/* ==== CSS RESET & BASE ==== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #FFF;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
img {
  max-width: 100%;
  display: block;
}

/* ==== BRAND FONTS ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* ==== ROOT COLORS ==== */
:root {
  --primary: #064370;
  --secondary: #E9ECEF;
  --accent: #F4AD31;
  --white: #fff;
  --grey-light: #F7F9FB;
  --grey: #E9ECEF;
  --grey-dark: #CED4DA;
  --text: #222;
  --text-light: #555;
  --shadow: 0 4px 24px rgba(6, 67, 112, 0.04), 0 1.5px 4px rgba(0,0,0,0.02);
  --radius: 12px;
}

/* ==== LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(6, 67, 112, 0.09), 0 2.5px 8px rgba(0,0,0,0.03);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  max-width: 640px;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
}
.testimonial-card p {
  font-weight: bold;
  color: var(--text);
  font-size: 15px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.14;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.06rem;
  margin-bottom: 6px;
}
p, ul, ol, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 8px;
}
strong {
  color: var(--primary);
  font-weight: 600;
}
em {
  color: var(--accent);
}
small {
  color: #666;
  font-size: 13px;
}
blockquote {
  border-left: 4px solid var(--accent);
  margin: 0 0 0 0;
  padding-left: 16px;
}

/* ==== BUTTONS ==== */
.button, a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 2.4em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: var(--accent);
  color: var(--primary);
  border-radius: 22px;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.2s;
  box-shadow: var(--shadow);
  min-width: 160px;
}
.button.primary, a.button.primary {
  background: var(--primary);
  color: var(--white);
}
.button.primary:hover, a.button.primary:hover, .cta:hover {
  background: #042C49;
  color: var(--accent);
  box-shadow: 0 8px 36px rgba(6,67,112,0.11), 0 2px 10px rgba(244,173,49,0.03);
}
.button.secondary, a.button.secondary {
  background: var(--secondary);
  color: var(--primary);
}
.button.secondary:hover, a.button.secondary:hover {
  background: var(--grey-dark);
  color: var(--primary);
}
.cta {
  background: var(--accent);
  color: var(--primary)!important;
  font-weight: 700;
  border-radius: 22px;
  padding: 0.62em 1.6em;
  transition: background 0.17s, color 0.17s;
}
.cta:hover {
  background: #FDD876;
  color: var(--primary)!important;
}

/* ==== NAVIGATION MENU ==== */
header {
  background: var(--white);
  border-bottom: 1px solid var(--secondary);
  position: sticky;
  top: 0;
  z-index: 102;
}
header > .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 20px 0 20px 0;
  gap: 36px;
  justify-content: space-between;
  min-height: 68px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  padding: 7px 13px;
  color: var(--primary);
  font-size: 1.01rem;
  letter-spacing: 0.01em;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
}
header nav a:hover:not(.cta) {
  background: var(--grey-light);
  color: var(--primary);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  padding: 6px 10px;
  cursor: pointer;
  z-index: 202;
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  box-shadow: 0 16px 64px rgba(6, 67, 112, 0.06);
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.64,.01,.57,1.13);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  cursor: pointer;
  align-self: flex-end;
  margin: 8px 28px 20px 0;
  transition: color 0.14s;
}
.mobile-menu-close:hover {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 32px;
  margin-top: 10px;
}
.mobile-nav a {
  font-size: 1.1rem;
  color: var(--primary);
  padding: 13px 0;
  border-radius: 10px;
  min-width: 160px;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover {
  background: var(--grey-light);
  color: var(--accent);
}

/* ==== SECTIONS & WRAPPING ==== */
main > section {
  margin-bottom: 60px;
  padding: 40px 0;
}
main > section:last-child {
  margin-bottom: 0;
}
.text-section {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

/* ==== FEATURE ICONS & LISTS ==== */
.feature-icons ul, .feature-icons li {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  padding: 0;
  margin-bottom: 10px;
}
.feature-icons img {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--secondary);
  padding: 5px;
}

ul, ol {
  padding-left: 21px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 1rem;
}
ul li strong {
  color: var(--primary);
}

/* ==== TOPICS GRID (Themenübersichten) ==== */
.topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.topic-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 250px;
  min-width: 225px;
  transition: box-shadow .18s, transform .13s;
}
.topic-card:hover {
  box-shadow: 0 12px 36px rgba(244,173,49,0.09), 0 2.5px 8px rgba(6,67,112,0.05);
  transform: translateY(-3px) scale(1.015);
}

/* ==== NEWS, EVENTS, REVIEWS & AWARDS LISTS ==== */
.news-list, .events-list, .reviews-list, .awards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.news-list li, .events-list li, .reviews-list li, .awards-list li {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 18px 24px;
  margin-bottom: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: box-shadow .16s, border-color .11s;
}
.news-list li:hover, .events-list li:hover, .reviews-list li:hover, .awards-list li:hover {
  box-shadow: 0 8px 28px rgba(244, 173, 49, 0.07), 0 2px 8px rgba(6, 67, 112, 0.02);
  border-color: var(--accent);
}

.news-filters, .events-filter, .reviews-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text);
}
.news-filters strong, .events-filter strong, .reviews-filter strong {
  color: var(--accent);
}

/* ==== FOOTER ==== */
footer {
  background: var(--grey);
  padding-top: 36px;
  margin-top: 48px;
  border-top: 1px solid var(--grey-dark);
}
footer .container {
  display: flex;
  flex-direction: row;
  gap: 48px 32px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
  font-size: 1rem;
}
.footer-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  padding: 4px 7px;
  border-radius: 7px;
  transition: background .12s;
}
.footer-nav a:hover {
  background: var(--accent);
  color: var(--primary);
}
.footer-nav span {
  color: #888;
  font-size: 0.98rem;
  margin-left: 8px;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact li {
  font-size: 1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  background: var(--secondary);
  border-radius: 4px;
  padding: 2px;
}
.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 15px;
}
.footer-social a {
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s, box-shadow .18s;
}
.footer-social a:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 24px rgba(6,67,112,0.13);
}
footer small {
  font-family: 'Roboto', Arial, sans-serif;
  text-align: center;
  display: block;
  margin: 28px 0 0 0;
  color: #777;
  opacity: 0.92;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3500;
  background: var(--white);
  box-shadow: 0 -3px 28px rgba(6,67,112,0.14);
  border-top: 1px solid var(--grey-dark);
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 22px 28px;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: transform .28s cubic-bezier(.64,.01,.57,1.13), opacity .22s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
}
.cookie-consent-text {
  flex: 1 1 390px;
  color: #333;
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-consent-actions button {
  border: none;
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.62em 1.9em;
  border-radius: 24px;
  background: var(--secondary);
  color: var(--primary);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background .13s, color .14s, box-shadow .14s;
}
.cookie-consent-actions button.accept {
  background: var(--primary);
  color: var(--white);
}
.cookie-consent-actions button.accept:hover {
  background: #042C49;
  color: var(--accent);
}
.cookie-consent-actions button.reject {
  background: #fff;
  color: #888;
  border: 1px solid var(--grey-dark);
}
.cookie-consent-actions button.reject:hover {
  background: var(--grey-light);
  color: var(--primary);
}
.cookie-consent-actions button.settings {
  background: var(--accent);
  color: var(--primary);
}
.cookie-consent-actions button.settings:hover {
  background: #FFE3A3;
  color: var(--primary);
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(41,56,68,0.24);
  z-index: 3911;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity .24s;
}
.cookie-modal.hide {
  pointer-events: none;
  opacity: 0;
}
.cookie-modal-dialog {
  background: var(--white);
  border-radius: 16px;
  max-width: 410px;
  width: 90vw;
  padding: 36px 30px 28px 30px;
  box-shadow: 0 8px 36px rgba(6,67,112,0.10);
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  z-index: 3912;
  animation: cookieModalIn .22s cubic-bezier(.7,0,.2,1.35);
}
@keyframes cookieModalIn {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie-modal-header h2 {
  font-size: 1.33rem;
  color: var(--primary);
  margin-bottom: 0;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  align-self: flex-end;
  transition: color .13s;
}
.cookie-modal-close:hover { color: var(--primary); }

.cookie-settings-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-setting-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.cookie-setting-item label {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-light);
  flex: 1 1 80px;
  font-size: 0.975rem;
}
.cookie-setting-toggle {
  display: flex;
  align-items: center;
}
.cookie-setting-toggle input[type="checkbox"] {
  appearance: none;
  width: 42px; height: 22px;
  background: var(--grey);
  border-radius: 16px;
  transition: background .17s;
  position: relative;
  outline: none;
  cursor: pointer;
}
.cookie-setting-toggle input[type="checkbox"]:checked {
  background: var(--accent);
}
.cookie-setting-toggle input[type="checkbox"]:before {
  content: "";
  width: 17px;
  height: 17px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  left: 2.5px; top: 2.2px;
  box-shadow: 0 3px 9px rgba(0,0,0,0.10);
  transition: left .18s;
}
.cookie-setting-toggle input[type="checkbox"]:checked:before {
  left: 22.7px;
}
.cookie-setting-item.essential label {
  color: var(--primary);
  font-weight: 600;
}
.cookie-setting-item.essential .cookie-setting-toggle input[type="checkbox"],
.cookie-setting-item.essential .cookie-setting-toggle input[type="checkbox"]:before {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 12px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  border-radius: 20px;
  padding: 0.57em 1.4em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}

@media (max-width: 1050px) {
  .container {
    max-width: 97vw;
    padding: 0 10px;
  }
}

/* ==== RESPONSIVE ==== */
@media (max-width: 900px) {
  .footer-nav { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-contact ul { font-size: 0.98rem; }
  .footer-social { margin-top: 8px; }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 7px;
  }
  header > .container {
    flex-direction: row;
    gap: 8px;
    padding: 11px 0 13px 0;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle{
    display: inline-block;
  }
  main > section {
    margin-bottom: 38px;
    padding: 28px 0;
  }
  .content-wrapper, .text-section {
    gap: 18px;
    padding: 21px 7px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 16px 10px;
  }
  .topics-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .topic-card {
    min-width: 0;
    padding: 20px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 12px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 15px 10px;
    font-size: 0.95rem;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.18rem; }
  .footer-nav {
    font-size: 0.95rem;
    gap: 8px 11px;
  }
  .cookie-modal-dialog { padding: 21px 10px 16px 10px; }
}

/* ==== MICRO-INTERACTIONS & TRANSITIONS ==== */
.button, a.button, .cta, .mobile-menu-toggle, .mobile-menu-close, .cookie-consent-actions button, .cookie-modal-close {
  transition: background .17s, color .19s, box-shadow .18s, transform .12s;
}
.button:active, a.button:active, .cta:active, .mobile-menu-toggle:active {
  transform: scale(0.97);
}

/* ==== SCROLLBAR (for minimal touch) ==== */
::-webkit-scrollbar { width: 7px; background: var(--grey); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 5px; }

/* ==== Z-INDEX LAYERING ==== */
header { z-index: 102; }
.mobile-menu { z-index: 2000; }
.cookie-consent-banner { z-index: 3500; }
.cookie-modal { z-index: 3911; }

/* ==== UTILITIES ==== */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.align-center { align-items: center !important; }
.gap-24 { gap: 24px !important; }

// ---- End ----