*{padding:0px; margin:0px;}
body{min-height:100vh;}
img{width:100%;cursor:pointer;}
ul.haufw{width:100%; height:100%; position:fixed; left:0px; top:0px; background:rgba(0,0,0,0.95); z-index:1000;}
ul.haufw>li{width: 5vh;height: 5vh;border: 4px solid #e3e3e3;border-top: 4px solid #3498db;border-radius: 50%;animation: rring 1s linear infinite;margin:auto; margin-top:47.5vh;list-style:none;}
@keyframes rring{0% { transform: rotate(0deg); }100% { transform: rotate(360deg); }}

:root {
  --primary: #0f5bdd;
  --secondary: #112240;
  --accent: #1ccad8;
  --text: #1b1b1f;
  --muted: #6c7484;
  --bg: #f5f7fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #fff;
  border-bottom: 1px solid #e1e5ef;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.4rem 1rem;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--secondary);
}

.logo-icon {
  width: 38px;
  height: 38px;
  border: 3px solid var(--primary);
  border-radius: 12px 12px 12px 0;
  margin-right: 0.6rem;
  position: relative;
}

.logo-icon::after {
  content: '';
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a {
  padding: 0.3rem 0.5rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  border-color: var(--primary);
}

main {
  flex: 1;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--secondary);
  margin-bottom: 1rem;
}

.hero p {
  color: var(--muted);
  max-width: 32rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
}

.muted {
  color: var(--muted);
}

.hero .cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 12px 25px rgba(17, 34, 64, 0.08);
  border-top: 4px solid var(--primary);
}

.card h3 {
  margin-top: 0;
  color: var(--secondary);
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.list li::before {
  content: '*';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.quote {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  color: var(--muted);
  font-style: italic;
}

footer {
  background: var(--secondary);
  color: #b8c8ea;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.footer-content a {
  color: #fff;
}

.hero-visual {
  background: linear-gradient(135deg, rgba(15, 91, 221, 0.12), rgba(28, 202, 216, 0.12));
  border: 1px solid rgba(15, 91, 221, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
}

.stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat {
  flex: 1;
  min-width: 140px;
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
}

.split-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(17, 34, 64, 0.12);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.8rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--primary);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17, 34, 64, 0.1);
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid #eef2fb;
  text-align: left;
}

th {
  background: rgba(15, 91, 221, 0.08);
  color: var(--secondary);
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stats {
    flex-direction: column;
  }
}
