/* ---------- 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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  min-height: 100vh;
  background: #FAF8F5;
  color: #222;
  font-family: 'Roboto', Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #15314B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2A007;
}

ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.4em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, serif;
  color: #15314B;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.625rem; /* 42px */
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem; /* 22px */
}
h4 {
  font-size: 1.125rem; /* 18px */
}

strong {
  font-weight: bold;
  color: #15314B;
}

p {
  margin-bottom: 16px;
}

blockquote {
  font-family: 'Georgia', serif;
  color: #15314B;
  font-size: 1.1rem;
  font-style: italic;
  margin: 0;
  padding-left: 1.4rem;
  border-left: 3px solid #F2A007;
  background: transparent;
}

hr {
  border: none;
  border-top: 1px solid #DBDBDB;
  margin: 32px 0;
}

/* ---------- CONTAINER & LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(21, 49, 75, 0.09);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(21, 49, 75, 0.14);
  transform: translateY(-2px);
}

.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;
}

/* ---------- HEADER & NAVIGATION ---------- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1.5px solid #e1dfda;
  padding: 0;
  position: sticky;
  z-index: 120;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 0px;
}
header a img {
  width: 164px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav .cta {
  margin-left: 18px;
}

.main-nav a {
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 0;
  color: #15314B;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s, color 0.2s;
}

.main-nav a:hover, .main-nav a:focus {
  color: #F2A007;
  border-bottom: 2px solid #F2A007;
}

.main-nav a.cta {
  background: #F2A007;
  color: #fff !important;
  border-bottom: none;
  border-radius: 6px;
  padding: 7px 20px;
  margin-left: 42px;
  font-weight: 600;
  box-shadow: 0 2px 7px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #15314B;
  color: #F2A007 !important;
  box-shadow: 0 4px 14px rgba(21,49,75,0.20);
}

/* ---------- MOBILE NAVIGATION ---------- */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #15314B;
  font-size: 2rem;
  display: none;
  cursor: pointer;
  margin-left: 24px;
  transition: color 0.2s;
  z-index: 300;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F2A007;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.4,.55,0,1);
  box-shadow: 0 0 60px rgba(21, 49, 75, 0.11), 0 0 0 2000px rgba(21,49,75,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #15314B;
  font-size: 2.4rem;
  align-self: flex-end;
  margin: 22px 22px 0 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  outline: 2px solid #F2A007;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 44px 32px;
  margin-top: 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Georgia, serif;
  color: #15314B;
  font-weight: 500;
  font-size: 1.25rem;
  padding: 5px 0;
  transition: color 0.2s, font-weight 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F2A007;
  font-weight: 600;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 20px;
  }
  .main-nav .cta {
    margin-left: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ---------- HERO SECTIONS ---------- */
.hero {
  background: #F7F5EF;
  padding: 60px 0 54px 0;
  margin-bottom: 48px;
  border-bottom: 1.5px solid #e1dfda;
}
.hero .content-wrapper {
  gap: 12px;
  text-align: left;
  align-items: flex-start;
}
.hero h1 {
  color: #15314B;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 2.625rem;
  letter-spacing: 0.01em;
}
.hero p {
  font-size: 1.25rem;
  color: #3D3B36;
  margin-bottom: 24px;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .hero {
    padding: 38px 0 30px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    text-align: left;
  }
}

/* ---------- FEATURE GRID ---------- */
.feature-grid, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid > div, .services-grid > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(21,49,75,0.10);
  padding: 28px 22px 22px 22px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid > div:hover, .services-grid > div:hover {
  box-shadow: 0 8px 18px rgba(21,49,75,0.17);
  z-index: 2;
}
.feature-grid img, .services-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 2px;
}
.feature-grid h3, .services-grid h3 {
  margin-bottom: 4px;
  font-size: 1.15rem;
}

@media (max-width: 900px) {
  .feature-grid, .services-grid {
    gap: 18px;
  }
  .feature-grid > div, .services-grid > div {
    min-width: 170px;
    max-width: unset;
    flex: 1 1 95%;
  }
}
@media (max-width: 560px) {
  .feature-grid, .services-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div, .services-grid > div {
    padding: 20px 14px 16px 14px;
  }
}

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

/* ---------- TEAM/TESTIMONIALS ---------- */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.team-list > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(21,49,75,0.10);
  padding: 18px 18px 15px 18px;
  flex: 1 1 180px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.qualifications ul {
  margin-left: 20px;
}
.qualifications li {
  list-style: disc inside;
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

.testimonial-card {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 4px 20px rgba(21,49,75,0.13);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 340px;
  min-width: 215px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
  border: 1.2px solid #ececec;
}

.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(21,49,75,0.18);
  transform: scale(1.025);
  border-color: #F2A007;
}
.testimonial-card .star-rating {
  color: #F2A007;
  font-size: 1.1rem;
  letter-spacing: 1px;
  font-family: "Montserrat", Georgia, serif;
  font-weight: 700;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  color: #1A2635;
  border-left: none;
  padding-left: 0;
  background: transparent;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #58544c;
}

@media (max-width: 800px) {
  .testimonials-slider, .team-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .team-list > div {
    max-width: 100%;
    min-width: unset;
  }
}

/* ---------- CARD & PRICING TABLES ---------- */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.pricing-table > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 20px rgba(21,49,75,0.10);
  padding: 28px 24px 18px 24px;
  flex: 1 1 210px;
  min-width: 180px;
  max-width: 280px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1.1px solid #f6f4f0;
}
.pricing-table > div:hover {
  box-shadow: 0 10px 30px rgba(21,49,75,0.14);
  border-color: #F2A007;
  transform: translateY(-2px);
  z-index: 1;
}
.pricing-table h3 {
  font-size: 1.13rem;
}
.pricing-table ul {
  margin-bottom: 0;
}
.pricing-notes p {
  font-size: 0.99rem;
  color: #736e65;
}

@media (max-width: 800px) {
  .pricing-table {
    flex-direction: column;
    gap: 16px;
  }
  .pricing-table > div {
    max-width: 100%;
  }
}

/* ---------- ACCORDIONS ---------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion > div {
  background: #F3F1EE;
  border-radius: 8px;
  border: 1px solid #E8E6E2;
  padding: 18px 20px 14px 20px;
  transition: box-shadow 0.14s;
}
.faq-accordion > div h3 {
  font-size: 1.05rem;
  margin-bottom: 5px;
}
.faq-accordion > div p {
  margin-bottom: 0;
  color: #353535;
}
.faq-accordion > div:hover {
  box-shadow: 0 3px 12px rgba(21,49,75,0.08);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: #15314B;
  color: #fff;
  border-radius: 16px;
  margin: 54px 0 0 0;
  padding: 30px 0;
  box-shadow: 0 5px 26px rgba(21,49,75,0.10);
}
.cta-banner .content-wrapper {
  gap: 11px;
  align-items: flex-start;
}
.cta-banner h2 {
  color: #fff;
}
.cta-banner .cta {
  margin-top: 12px;
}

/* CTA BUTTONS */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 6px;
  padding: 10px 30px;
  background: #F2A007;
  color: #fff;
  border: none;
  box-shadow: 0 3px 15px rgba(21,49,75,0.13);
  transition: background 0.16s, color 0.16s, box-shadow 0.18s, transform 0.09s;
  cursor: pointer;
  text-align: center;
  margin: 0 7px 0 0;
}
.cta.secondary {  background: #fff; color: #F2A007; border: 1.7px solid #F2A007; }
.cta.primary {  background: #F2A007; color: #fff; border: 1.7px solid #F2A007; }
.cta:hover, .cta:focus {
  background: #15314B;
  color: #F2A007;
  box-shadow: 0 7px 30px rgba(21,49,75,0.19);
  transform: translateY(-2px) scale(1.04);
  border-color: #15314B;
  outline: none;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #F2A007;
  color: #fff;
}

/* ---------- CARD/SECTION SPACING (MANDATORY) ---------- */
.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;
}

/* ---------- CONTACT INFO LIST ---------- */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.03rem;
}
.contact-list img {
  width: 24px;
  height: 24px;
}
.map-container {
  margin-top: 14px;
  background: #FCFAF7;
  border-radius: 8px;
  padding: 18px 16px;
  box-shadow: 0 2px 14px rgba(21,49,75,0.06);
  font-size: 1.08rem;
}

/* ---------- FOOTER ---------- */
footer {
  background: #1C2330;
  color: #ddd;
  padding: 0 0 0 0;
  margin-top: 64px;
}
footer .container {
  padding: 0 18px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 34px 0 26px 0;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-menu a {
  color: #fff;
  opacity: 0.90;
  font-size: 1.01rem;
  font-family: 'Montserrat', Georgia, serif;
  transition: opacity 0.15s, color 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #F2A007;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 1rem;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  margin-right: 7px;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
.footer-branding img {
  width: 33px;
  height: auto;
}
.footer-branding span {
  font-size: 0.97rem;
  color: #c7c4bc;
}

@media (max-width: 1000px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .footer-menu {
    flex-direction: row;
    gap: 23px;
    margin-bottom: 8px;
  }
}
@media (max-width: 540px) {
  footer {
    padding-bottom: 84px;
  }
  .footer-content {
    gap: 16px;
    padding: 18px 0 10px 0;
  }
}

/* ---------- LEGAL PAGES ---------- */
.legal {
  background: #FCFAF7;
  padding: 38px 0 56px 0;
  margin-bottom: 60px;
  border-radius: 11px;
  box-shadow: 0 2px 24px rgba(21,49,75,0.03);
}
.legal .content-wrapper {
  gap: 18px;
  max-width: 830px;
}
.legal h1 {
  font-size: 2.2rem;
}
.legal h2 {
  font-size: 1.3rem;
  margin-top: 24px;
}

/* ---------- THANK YOU PAGE ---------- */
.thank-you {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: #ede9e2;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(21,49,75,0.05);
  padding: 60px 0;
}
.thank-you .content-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  gap: 19px;
}
.thank-you h1 {
  color: #15314B;
}

/* ---------- COOKIE BANNER & MODAL ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2d3139;
  color: #fff;
  padding: 25px 20px 18px 20px;
  z-index: 3000;
  box-shadow: 0 -3px 20px rgba(21,49,75,.18);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: center;
  font-size: 1.027rem;
  border-top: 3px solid #F2A007;
  transition: transform 0.42s cubic-bezier(.4,.55,0,1);
}
.cookie-banner.hide { transform: translateY(145%); }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.03rem;
  padding: 8px 26px;
  border-radius: 6px;
  border: none;
  margin: 0 4px 0 0;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: #F2A007;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #15314B;
  color: #F2A007;
}
.cookie-banner .reject {
  background: #fff;
  color: #15314B;
  border: 1.3px solid #F2A007;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #F2A007;
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  color: #F2A007;
  border: 1.2px solid #F2A007;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F2A007;
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(20,30,40,0.68);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }

.cookie-modal {
  background: #fff;
  border-radius: 13px;
  padding: 32px 30px 26px 30px;
  min-width: 330px;
  max-width: 99vw;
  max-height: 90vh;
  box-shadow: 0 8px 44px rgba(21,49,75,0.18);
  color: #15314B;
  font-size: 1.04rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: cookie-modal-slide-in 0.36s ease;
}
@keyframes cookie-modal-slide-in {
  from { transform: scale(0.96) translateY(42px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2, .cookie-modal h3 {
  color: #15314B;
  margin-bottom: 5px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 7px 0;
}
.cookie-modal .toggle {
  width: 38px;
  height: 23px;
  border-radius: 14px;
  background: #ececec;
  border: 1.2px solid #DDDDDD;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  flex-shrink: 0;
}
.cookie-modal .toggle.enabled {
  background: #F2A007;
  border-color: #F2A007;
}
.cookie-modal .toggle:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.19s;
}
.cookie-modal .toggle.enabled:before {
  left: 19px;
}
.cookie-modal .category label {
  font-size: 1rem;
  font-weight: 500;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 23px;
  background: none;
  border: none;
  color: #15314B;
  font-size: 1.6rem;
  cursor: pointer;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 18px;
  margin-top: 7px;
}
.cookie-modal button {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.05rem;
  padding: 8px 23px;
  border-radius: 7px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal .accept {
  background: #F2A007; color: #fff;
}
.cookie-modal .accept:hover, .cookie-modal .accept:focus { background: #15314B; color: #F2A007; }
.cookie-modal .reject {
  background: #15314B; color: #fff;
}
.cookie-modal .reject:hover, .cookie-modal .reject:focus { background: #fff; color: #F2A007; border: 1.2px solid #F2A007; }

@media (max-width: 520px) {
  .cookie-modal {
    padding: 18px 11px;
    min-width: 94vw;
    max-width: 100vw;
  }
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 1023px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .team-list, .testimonials-slider {
    flex-direction: column;
    gap: 16px;
  }
  .section {
    padding: 23px 4px;
    margin-bottom: 44px;
  }
  .footer-content {
    gap: 16px;
    padding: 18px 0 10px 0;
  }
  .cta-banner {
    border-radius: 8px;
    padding: 18px 0;
  }
  .thank-you {
    padding: 36px 0;
  }
}
@media (max-width: 510px) {
  .container {
    padding: 0 4px;
  }
  .section {
    padding: 10px 3px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 9px;
  }
}

/* ---------- GENERAL MICRO-INTERACTIONS ---------- */
button, .cta, .cookie-banner button, .cookie-modal button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .15s, color .15s, box-shadow 0.18s, transform 0.11s;
  outline: none;
}

button:focus, .cta:focus {
  outline: 2px solid #F2A007;
  outline-offset: 2px;
}

/* ---------- UTILS ---------- */
.hide { display: none !important; }
.show { display: block !important; }

/* ---------- FONT FACE (Load Web Safe as Fallback) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');
