*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:        #0a2342;
  --navy-light:  #163a60;
  --blue:        #1565c0;
  --blue-hover:  #0d47a1;
  --blue-light:  #e8f0fe;
  --red:         #c62828;
  --gray-bg:     #f5f7fa;
  --gray-border: #dce3ea;
  --text:        #1a1a2e;
  --text-muted:  #4a5568;
  --white:       #ffffff;
  --max-width:   1100px;
  --radius:      6px;
  --shadow:      0 2px 8px rgba(0,0,0,0.1);
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* ============================== LAYOUT ============================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================== NAVIGATION ============================== */

.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-brand:hover {
  text-decoration: none;
  color: var(--white);
}

.cross {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
  text-decoration: none;
}

.nav-links a.active {
  background: var(--blue);
}

.btn-nav {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.45rem 1rem !important;
  font-weight: 600;
  margin-left: 0.5rem;
}

.btn-nav:hover {
  background: var(--blue-hover) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}

/* ============================== HERO ============================== */

.hero {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-light) 55%, #1e4f8a 100%);
  color: var(--white);
  padding: 5rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M26 22h8v-8h4v8h8v4h-8v8h-4v-8h-8z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.88);
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  font-style: italic;
  letter-spacing: 1.5px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================== BUTTONS ============================== */

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  text-decoration: none;
  border: none;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(21,101,192,0.35);
}

.btn-primary:hover {
  background: var(--blue-hover);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(21,101,192,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

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

.btn-ghost:hover {
  background: var(--blue-light);
  color: var(--blue-hover);
}

/* ============================== SECTIONS ============================== */

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--gray-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

/* ============================== STATS BAR ============================== */

.stats-bar {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 0;
}

.stats-inner {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.62);
  margin-top: 0.3rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================== CARDS ============================== */

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

.card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.875rem;
}

.card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ============================== PAGE HEADER ============================== */

.page-header {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 3rem 0 2.75rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
}

/* ============================== ABOUT PAGE ============================== */

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-intro h2 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.about-intro p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-intro p:last-child {
  margin-bottom: 0;
}

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

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.value-card .icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.value-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.division-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.division-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.division-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.division-item h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.division-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ============================== RECRUITMENT PAGE ============================== */

.requirements-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
}

.requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  font-size: 0.93rem;
  color: var(--text);
}

.requirements-list li .check {
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(21,101,192,0.3);
}

.step-content h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ============================== NEWS PAGE ============================== */

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

.news-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.news-card-header {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 0.7rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.news-badge {
  background: var(--blue);
  color: var(--white);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-badge.green  { background: #2e7d32; }
.news-badge.orange { background: #e65100; }
.news-badge.purple { background: #4a148c; }

.news-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-body h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.news-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
}

/* ============================== CONTACT PAGE ============================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-icon {
  font-size: 2.25rem;
  margin-bottom: 0.875rem;
}

.contact-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.impressum {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow);
}

.impressum h2 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.impressum .divider {
  height: 2px;
  background: var(--blue);
  width: 48px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.impressum h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

.impressum p,
.impressum address {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: normal;
}

/* ============================== ALERT ============================== */

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.93rem;
  line-height: 1.55;
}

.alert-info {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  color: var(--navy);
}

/* ============================== CTA SECTION ============================== */

.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================== FOOTER ============================== */

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.62);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-brand {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  width: 100%;
  text-align: center;
  margin-top: 0.25rem;
}

/* ============================== RESPONSIVE ============================== */

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 0.75rem 1rem 1rem;
    gap: 0.2rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 1rem;
  }

  .btn-nav {
    margin-left: 0 !important;
    margin-top: 0.25rem;
    text-align: center;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-inner {
    gap: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
