/* ==== CSS Reset & Normalize ==== */
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,
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,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  background: #0B172A;
  color: #F7FAFC;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
ul,ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, textarea, select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}


/* ==== Variables (Fallbacks for old browsers) ==== */
:root {
  --primary: #004080;
  --secondary: #DE3C4B;
  --accent: #FFEBB7;
  --bg-top: #141B2E;
  --bg-section: #1E2438;
  --bg-light: #232F45;
  --text-light: #F7FAFC;
  --text-dark: #1D2233;
  --shadow: 0 4px 32px 0 rgba(0,36,64,0.13), 0 1.5px 12px 0 rgba(222,60,75,0.06);
}


/* ==== Typography ==== */
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: linear-gradient(135deg, #121F36 0%, #232F45 100%);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--accent, #FFEBB7);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  margin-bottom: 22px;
  line-height: 1.17;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  line-height: 1.22;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p,li {
  color: var(--text-light, #F7FAFC);
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.65;
}
strong {
  color: var(--accent, #FFEBB7);
  font-weight: 700;
}
.subtitle {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.19rem;
  margin-bottom: 18px;
  line-height: 1.4;
  color: #B5CFFF;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}


/* ==== Container Pattern ==== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ==== Header / Navigation ==== */
header {
  background: linear-gradient(90deg, #0A1531 60%, #1C294B 100%);
  border-bottom: 1.5px solid #19335C;
  z-index: 1001;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 12px;
  gap: 20px;
}
.nav-logo img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 0 6px #FFD60022);
}
.main-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--accent, #FFEBB7);
  text-shadow: 0 1px 8px #161C4A77;
  position: relative;
  padding: 6px 2px;
  transition: color .18s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  color: var(--secondary, #DE3C4B);
}
.cta-btn {
  background: var(--secondary, #DE3C4B);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 24px;
  padding: 12px 32px;
  margin-left: 18px;
  box-shadow: 0 2px 24px 0 #DE3C4B44;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .22s, transform .22s;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FD4252;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 12px 2px #FFEBB7;
}
.secondary-btn {
  background: #1E2438;
  color: var(--accent, #FFEBB7);
  border: 2px solid var(--accent, #FFEBB7);
  border-radius: 22px;
  font-size: 1rem;
  padding: 10px 26px;
  margin-top: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: background .2s,color .2s,box-shadow .22s;
  box-shadow: 0 1px 10px 0 #FFEBB744;
  cursor: pointer;
}
.secondary-btn:hover, .secondary-btn:focus {
  color: #232F45;
  background: var(--accent, #FFEBB7);
  border-color: var(--secondary, #DE3C4B);
}

.mobile-menu-toggle {
  display: none;
  background: var(--primary, #004080);
  color: #fff;
  font-size: 2.1rem;
  height: 42px;
  width: 52px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 18px;
  top: 14px;
  z-index: 1032;
  transition: background .2s, box-shadow .14s;
  box-shadow: 0 2px 16px 0 #00408066;
  outline: none;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #1E2438;
}

/* ==== Mobile Navigation ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(120deg, #121F36 80%, #232F45 100%);
  box-shadow: 0 6px 32px #001438bb;
  transform: translateX(-100vw);
  opacity: 0;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.36s cubic-bezier(.7, .3, .26, 1.15), opacity 0.33s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--secondary, #DE3C4B);
  color: #fff;
  font-size: 2rem;
  border-radius: 20px;
  margin: 22px 0 15px 25px;
  padding: 7px 20px 5px 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 20px #DE3C4B44;
  align-self: flex-start;
  outline: none;
  transition: background .17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #C92C37;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-left: 40px;
  margin-top: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.mobile-nav a {
  color: var(--accent, #FFEBB7);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px 0 12px 0;
  width: 100%;
  border-bottom: 1px solid #23395E40;
  transition: color .13s, background .16s;
  border-radius: 6px 22px 22px 6px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #fff;
  background: var(--secondary, #DE3C4B);
}

@media (max-width:1080px){
  .container{max-width: 98vw;}
}
@media (max-width:880px){
  .main-nav ul{gap:16px;}
  .main-nav .cta-btn{padding:10px 22px;}
}
@media (max-width: 790px) {
  .main-nav ul, .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}


/* ==== Hero Section ==== */
.hero {
  display: flex;
  align-items: center;
  min-height: 340px;
  background: linear-gradient(120deg, #004080 60%, #23395E 100%);
  position: relative;
  box-shadow: 0 8px 32px 0 #00245160;
  padding-bottom: 30px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 650px;
}

/* ==== Features Section ==== */
.features {
  background: var(--bg-section, #1E2438);
  border-radius: 24px;
  margin-bottom: 60px;
  box-shadow: 0 1.5px 16px #00336633;
}
.features .content-wrapper {
  gap: 24px;
}
.feature-grid,
.museum-list-grid,
.event-list-grid,
.interactive-feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 24px 0 12px 0;
  justify-content: space-between;
}
.feature-grid > div,
.museum-list-grid > div,
.event-list-grid > div,
.interactive-feature-grid > div {
  flex: 1 1 210px;
  min-width: 180px;
  background: #232F45;
  box-shadow: 0 2px 16px #001C3872;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 24px 20px 24px;
  margin-bottom: 20px;
  position: relative;
  border-left: 5px solid var(--accent, #FFEBB7);
  transition: box-shadow .20s, border-color .20s, transform .15s;
}
.feature-grid > div:hover,
.museum-list-grid > div:hover,
.event-list-grid > div:hover,
.interactive-feature-grid > div:hover {
  box-shadow: 0 2px 32px #DE3C4B55;
  transform: translateY(-5px) scale(1.015);
  border-left: 5px solid var(--secondary, #DE3C4B);
}
.feature-grid img,
.interactive-feature-grid img,
.museum-list-grid img {
  height: 42px;
  width: 42px;
  margin-bottom: 5px;
  filter: drop-shadow(0 0 6px var(--accent, #FFEBB7));
}
.features ul, .about ul, .besuch-planen .features ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.features ul li:before {
  content: '';
  display: inline-block;
  margin-right: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent, #FFEBB7);
  vertical-align: middle;
  box-shadow: 0 0 9px #FFD50044;
}

/* ==== Services Section ==== */
.services {
  background: var(--bg-light, #232F45);
  border-radius: 24px;
  margin-bottom: 60px;
  box-shadow: 0 4px 32px #19335C13;
}
.services .content-wrapper {
  gap: 25px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin: 16px 0 12px 0;
}
.service-cards > div {
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 340px;
  background: #1E2438;
  color: var(--text-light,#F7FAFC);
  box-shadow: 0 2px 18px #00408024;
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 22px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: box-shadow .22s, transform .17s;
}
.service-cards > div:hover {
  box-shadow: 0 0 24px #DE3C4B44;
  transform: scale(1.025) translateY(-5px);
}
.service-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 18px 0 12px 0;
}
.service-info > div {
  background: #232F45;
  border-radius: 13px;
  box-shadow: 0 1.5px 10px #00408026;
  flex: 1 1 210px;
  min-width: 200px;
  padding: 18px 16px 14px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==== Testimonials ==== */
.testimonials {
  background: #181B29;
  border-radius: 22px;
  margin-bottom: 60px;
  box-shadow: 0 1.5px 16px #00336614;
}
.testimonials .content-wrapper {
  gap: 25px;
}
.testimonial-card {
  background: #FFF8EC;
  color: #1B1F35;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 24px #FFE8BB44;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
  font-size: 1.06rem;
  border-left: 5px solid var(--secondary,#DE3C4B);
  transition: box-shadow .23s, border-color .17s;
  position: relative;
}
.testimonial-card strong {
  color: var(--primary,#004080);
}
.testimonial-card:hover {
  box-shadow: 0 0 24px #DE3C4B22, 0 1.5px 16px #FFEBB744;
  border-left: 5px solid var(--primary,#004080);
}
.testimonial-card p {
  color: #212648;
  flex: 1 1 170px;
  line-height: 1.5;
}
.testimonial-card div {
  min-width: 110px;
  text-align: right;
  color: #907a35;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}


/* ==== Cards ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #1E2438;
  border-radius: 14px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 1.5px 14px #00336629;
  padding: 24px 16px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .2s, transform .12s;
}
.card:hover {
  box-shadow: 0 3px 32px #DE3C4B33;
  transform: translateY(-4px) scale(1.01);
}

/* ==== About / Team Cards ==== */
.team-member-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.team-member-cards > div {
  background: #232F45;
  border-radius: 13px;
  min-width: 164px;
  max-width: 290px;
  margin-bottom: 20px;
  padding: 18px 19px 16px 22px;
  box-shadow: 0 1.5px 16px #00336618;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-left: 3.5px solid var(--secondary,#DE3C4B);
  font-family: 'Roboto', Arial, sans-serif;
}
.team-member-cards > div span {
  color: var(--accent,#FFEBB7);
  font-weight: 500;
}

/* ==== Content / Text-Image (not in sample but for possible use) ==== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 26px;
  }
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 3px;
  margin-bottom: 18px;
}


/* ==== Lists, Address Maps ==== */
.address-map, .location-map {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #222c41;
  border-radius: 13px;
  margin: 10px 0 20px 0;
  padding: 12px 18px;
  box-shadow: 0 0.5px 7px #0C113611;
}
.address-map img, .location-map img {
  height: 38px;
  width: 38px;
}


/* ==== Contact Call-to-Action Boxes ==== */
.contact-cta {
  background: #16213A;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 1.5px 12px #00408011;
}
.contact-cta .content-wrapper {
  gap: 17px;
}
.contact-cta a {
  color: var(--secondary,#DE3C4B);
  border-bottom: 1.5px dotted #DE3C4B53;
  font-weight: 600;
}
.contact-cta a:hover { color: #0087DE; }

.contact-highlight {
  margin-top: 14px;
  padding: 12px 20px;
  border-left: 5px solid var(--secondary,#DE3C4B);
  background: #212648;
  color: var(--accent,#FFEBB7);
  border-radius: 12px;
  font-weight: 500;
  word-break: break-all;
}


/* ==== Footer ==== */
footer {
  background: #0C1830;
  padding: 28px 10px 14px 10px;
  border-top: 2px solid #223357;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--accent,#FFEBB7);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-bottom: 1.5px solid transparent;
  transition: border-color .16s, color .17s;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--secondary,#DE3C4B);
  border-bottom: 1.5px solid var(--secondary,#DE3C4B);
}
.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-icons img {
  height: 28px; width: 28px;
  filter: drop-shadow(0 0 4px #FFEBB755);
  opacity: 0.82;
  transition: opacity .14s;
  cursor: pointer;
}
.social-icons img:hover {
  opacity: 1;
}
.legal-notes {
  color: #A0AEC0;
  font-size: .97rem;
  text-align: center;
  margin-top: 12px;
}

/* ==== Thank You Page ====*/
.thankyou {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #004080;
  border-radius: 18px;
  box-shadow: 0 2px 34px #DE3C4B22;
  margin-bottom: 60px;
}

/* ==== Legal Pages ==== */
.legal {
  background: #171B27;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 1.5px 12px #00408011;
}
.legal .content-wrapper {
  gap: 18px;
}
.legal h1, .legal h2, .legal h3 {
  color: var(--secondary,#DE3C4B);
}
.legal a { color: var(--primary,#004080); text-decoration: underline; }
.legal ul { margin-bottom: 16px; }
.legal ul li {margin-bottom: 6px;}

/* ==== Cookie Consent Banner ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #232F45;
  color: var(--accent,#FFEBB7);
  padding: 18px 22px 16px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  box-shadow: 0 -2px 18px #00408012;
  z-index: 4500;
  justify-content: space-between;
  font-size: 1rem;
  animation: cookie-slide-in 0.6s cubic-bezier(.8,-0.2,.26,1.26);
}
@keyframes cookie-slide-in { from { transform: translateY(120%); } to { transform: translateY(0); } }
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  cursor: pointer;
  border: none;
  border-radius: 9px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 24px;
  transition: background .18s, color .15s;
}
.cookie-banner .accept {
  background: var(--secondary,#DE3C4B);
  color: #fff;
  margin-right: 5px;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #C92C37;
}
.cookie-banner .reject {
  background: #15213D;
  color: var(--accent,#FFEBB7);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #222c41;
  color: #fff;
}
.cookie-banner .settings {
  background: #1E2438;
  color: var(--accent,#FFEBB7);
  border: 1.5px solid var(--accent,#FFEBB7);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--accent,#FFEBB7);
  color: #1D2233;
}

/* ==== Cookie Modal ==== */
.cookie-modal-backdrop {
  position: fixed;
  top: 0;left: 0;right: 0;bottom: 0;
  background: #0B172AE0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in-bd 0.4s;
}
@keyframes fade-in-bd { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #F7FAFC;
  color: #1D2233;
  width: 98vw;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 8px 44px #00143866;
  padding: 32px 28px 22px 28px;
  z-index: 8100;
  animation: modal-slide-up 0.6s cubic-bezier(.8,-0.2,.26,1.26);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
@keyframes modal-slide-up { from { transform: translateY(80px); opacity:0; } to { transform: translateY(0); opacity:1; } }
.cookie-modal h2 {
  color: var(--secondary, #DE3C4B);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.cookie-modal .modal-section {
  background: #F6F8FA;
  padding: 16px 15px;
  border-radius: 10px;
  box-shadow: 0 1px 8px #121F3640;
  margin-bottom: 9px;
}
.cookie-modal label {
  font-weight: 500;
  margin-right: 9px;
  font-family: 'Montserrat', sans-serif;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--secondary, #DE3C4B);
  width: 19px; height: 19px;
  vertical-align: middle;
  margin-right: 7px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top:10px;
  justify-content: flex-end;
}
.cookie-modal .accept {
  background: var(--secondary,#DE3C4B);
  color: #fff;
}
.cookie-modal .accept:hover, .cookie-modal .accept:focus {
  background: #C92C37;
}
.cookie-modal .close {
  background: #1E2438;
  color: var(--accent,#FFEBB7);
  border: 1.5px solid var(--accent,#FFEBB7);
  border-radius: 7px;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  background: var(--accent,#FFEBB7);
  color: #1D2233;
}

/* ==== Responsive / Mobile-first ==== */
@media (max-width: 980px) {
  .feature-grid, .museum-list-grid, .event-list-grid, .interactive-feature-grid, .team-member-cards, .service-cards, .service-info {
    flex-direction: column;
    gap: 16px;
  }
  .service-cards > div, .feature-grid > div, .museum-list-grid > div,
  .event-list-grid > div, .interactive-feature-grid > div, .service-info > div,
  .team-member-cards > div {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 700px) {
  .container {
    padding: 0 6px;
  }
  .hero .content-wrapper {padding-top:26px;padding-bottom:26px;}
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; margin-bottom: 14px; }
  .section { padding: 28px 8px; }
}
@media (max-width: 520px) {
  .main-nav, .footer-links, .social-icons { flex-direction: column; gap: 9px; }
  .mobile-nav { padding-left: 18px; }
  h1{ font-size: 1.28rem; }
  h2{ font-size: 1.11rem; }
  .cta-btn,.secondary-btn{ font-size: .99rem; padding:8px 17px; }
}

/* ==== Spacing Patterns (per requirement) ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ==== Utility ==== */
.hide { display:none !important; }

::-webkit-scrollbar { width:10px; background:#181B29; }
::-webkit-scrollbar-thumb { background: #223357; border-radius:14px; }
::-webkit-scrollbar-thumb:hover { background: #003366; }

/* ===== Micro-Interactions / Effects ===== */
button, .cta-btn, .secondary-btn {
  transition: background .21s, color .15s, box-shadow .19s, border-color .17s, transform .13s;
}
a, .footer-links a, .main-nav ul li a {
  transition: color .12s, border-color .11s;
}

/* ==== Accessibility Enhancements ==== */
:focus-visible {
  outline: 2px solid var(--secondary, #DE3C4B);
  outline-offset: 2px;
}

