/* 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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: inherit; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  background: #F5F7FA;
  color: #262C38;
  line-height: 1.7;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }

/* TYPOGRAPHY ----------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #003366;
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
h1 { font-size: 2.2rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.17rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; }
p, ul, ol { font-size: 1rem; margin-bottom: 20px; }
ul, ol {
  padding-left: 32px;
}
a {
  color: #003366;
  text-decoration: none;
  transition: color 0.2s;
  font-family: inherit;
}
a:hover, a:focus {
  color: #FFAA1D;
  text-decoration: underline;
}
strong { font-weight: bold; color: #003366; }

/* LAYOUT & CONTAINERS ----------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX UTILS ---------------------------------- */
.card-container,
.card-grid,
.content-grid,
.service-grid,
.service-list,
.testimonial-list,
.case-grid,
.resource-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; }
.content-grid {
  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;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid, .service-grid, .case-grid, .resource-list {
    flex-direction: column;
    gap: 20px;
  }
}

/* HEADER/NAVIGATION ----------------------------- */
header {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,51,102,0.07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 120;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  padding: 22px 0 18px 0;
}
.main-nav img {
  height: 36px;
  margin-right: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.main-nav a:not(.cta-primary):hover, .main-nav a:not(.cta-primary):focus {
  background: #F5F7FA;
  color: #FFAA1D;
}
.cta-primary {
  background: #FFAA1D;
  color: #003366 !important;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 10px 28px;
  margin-left: 14px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(255,170,29,0.14);
  cursor: pointer;
  position: relative;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cta-primary:hover, .cta-primary:focus {
  background: #FFD97D;
  color: #003366 !important;
  box-shadow: 0 4px 24px rgba(255,170,29,0.3);
}

.mobile-menu-toggle {
  display: none;
  background: #FFAA1D;
  color: #003366;
  border: none;
  border-radius: 4px;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFD97D;
  color: #262C38;
}
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,51,102,0.98);
  color: #fff;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.6, .3, .19, .97);
  z-index: 260;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 40px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 28px;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #FFAA1D;
  cursor: pointer;
  z-index: 261;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 54px;
  width: 100%;
  padding-left: 42px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  padding: 10px 0;
  letter-spacing: 1px;
  transition: color 0.2s, background 0.2s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFAA1D;
  background: rgba(255,170,29,0.07);
}

/* HERO SECTION ------------------------------------ */
.hero {
  background: linear-gradient(90deg, #F5F7FA 72%, #FFAA1D 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 340px;
}
.hero .content-wrapper {
  max-width: 680px;
  padding: 40px 0;
}
.hero h1 {
  font-size: 2.4rem;
  color: #003366;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  margin-bottom: 13px;
  word-break: break-word;
}
.hero .tagline {
  font-size: 1.1rem;
  color: #FFAA1D;
  font-family: 'Montserrat', cursive, Arial, sans-serif;
  margin-bottom: 22px;
  letter-spacing: 0.6px;
  font-style: italic;
  text-shadow: 0 2px 10px rgba(255,170,29,0.08);
}

@media (max-width: 768px) {
  .hero .content-wrapper,
  .hero .container {
    padding: 30px 0;
    min-height: unset;
  }
  .hero h1 {
    font-size: 1.25rem;
  }
}

/* FEATURES & ICONS -------------------------------- */
.features {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 24px rgba(0,51,102,0.08);
  margin-top: -36px;
  z-index: 10;
  position: relative;
}
.features h2 {
  color: #003366;
}
.features ul {
  margin-bottom: 16px;
  list-style: disc inside;
  font-size: 1rem;
}
.usp-icons {
  display: flex;
  gap: 34px;
  align-items: center;
  padding-top: 20px;
}
.usp-icons img {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background: #F5F7FA;
  box-shadow: 0 1px 6px rgba(0,51,102,0.08);
  padding: 8px;
  object-fit: contain;
  border: 2px solid #FFAA1D;
  transition: transform 0.2s, box-shadow 0.2s;
}
.usp-icons img:hover {
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 4px 16px rgba(255,170,29,0.20);
}
@media (max-width: 600px) {
  .features {
    margin-top: 0;
    border-radius: 0 0 24px 24px;
  }
  .usp-icons {
    gap: 12px;
    padding-bottom: 10px;
  }
}

/* SERVICES & PROGRAM CARDS ------------------------- */
.services, .service-list, .service-grid, .service-card {
  width: 100%;
}
.service-grid, .service-list {
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0,51,102,0.06), 0 1.5px 24px rgba(255,170,29,0.07);
  padding: 30px 28px 30px 30px;
  flex: 1 1 264px;
  min-width: 265px;
  max-width: 345px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  border-left: 7px solid #FFAA1D;
  overflow: hidden;
  transition: box-shadow 0.19s;
}
.service-card:hover {
  box-shadow: 0 6px 42px rgba(0,51,102,0.15), 0 3px 18px rgba(255,170,29,0.13);
}
.service-card h3, .service-card h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #00294d;
  font-size: 1.09rem;
}
.service-card ul {
  margin-top: 7px;
  margin-bottom: 0;
  font-size: 1rem;
  list-style: circle inside;
}
.service-price, .service-card ul li strong {
  color: #FFAA1D;
}
@media (max-width: 920px) {
  .service-grid, .service-list {
    gap: 16px;
  }
  .service-card {
    min-width: 95%;
    padding: 20px 16px;
  }
}

/* TESTIMONIALS & SLIDERS -------------------------- */
.testimonials, .client-testimonials {
  background: #003366;
  color: #fff;
  border-radius: 32px;
  padding: 48px 18px;
  box-shadow: 0 3px 32px rgba(0,51,102,0.25);
  margin-bottom: 60px;
}
.testimonials h2, .client-testimonials h1, .client-testimonials h2 {
  color: #FFAA1D;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.testimonial-card {
  background: #fff;
  color: #262C38;
  border-radius: 20px;
  box-shadow: 0 2.5px 14px rgba(0,51,102,0.07);
  padding: 24px 30px 22px 30px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  max-width: 370px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  border-left: 4px solid #FFAA1D;
  font-size: 1.1rem;
  position: relative;
  transition: box-shadow 0.19s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 9px 38px rgba(255,170,29,0.18);
  transform: translateY(-3px) rotate(-1.5deg);
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #003366;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  margin-top: 10px;
  letter-spacing: 0.1em;
}
@media (max-width: 900px) {
  .testimonial-slider, .testimonial-list {
    gap: 10px;
    flex-direction: column;
  }
  .testimonial-card {
    width: 100%;
    min-width: unset;
  }
}

/* CTA & BANNER ------------------------------------ */
.cta, .resources-cta, .cta-banner {
  background: #FFAA1D;
  border-radius: 24px;
  box-shadow: 0 6px 30px rgba(255,170,29,0.18);
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.cta h2, .resources-cta h2, .cta-banner h2 { color: #003366; }
.cta p, .cta-banner p { color: #262C38; margin-bottom: 19px; }
.resources-cta .cta-primary, .cta-banner .cta-primary {
  margin-top: 10px;
}

/* ABOUT, APPROACH, ETC. ---------------------------- */
.text-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1.5px 10px rgba(0,51,102,0.03);
  padding: 24px 24px 18px 24px;
  margin-bottom: 24px;
  font-size: 1.06rem;
  color: #262C38;
  width: 100%;
}
.text-section h2, .text-section h3 {
  color: #FFAA1D;
  font-family: 'Montserrat', Arial, sans-serif;
}
/* Feature/steps/advantages lists */
.company-features ul, .business-impact ul, .text-section ul {
  margin-top: 9px;
  margin-bottom: 12px;
}
.section ul, .section ol {
  margin-bottom: 20px;
}

@media (max-width:600px){
  .text-section {
    padding: 14px;
  }
}

/* CLIENT LOGOS / CASE STUDIES ---------------------- */
.client-logos {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0,51,102,0.04);
  padding: 28px 0;
  margin-bottom: 60px;
}
.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-bottom: 0;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #003366;
  font-size: 1.1rem;
  padding-left: 0;
  list-style: none;
}
.case-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}
.case-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 14px rgba(0,51,102,0.05);
  padding: 22px 22px 16px 22px;
  flex: 1 1 270px;
  min-width: 260px;
  max-width: 420px;
  margin-bottom: 20px;
  position: relative;
  border-left: 4px solid #FFAA1D;
  transition: box-shadow 0.18s, transform 0.2s;
}
.case-card:hover {
  box-shadow: 0 7px 28px rgba(255,170,29,0.16);
  transform: rotate(1deg);
}

/* RESOURCES PAGE ---------------------------------- */
.category-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.category-tabs span {
  background: #fff;
  color: #003366;
  border-radius: 12px;
  padding: 6px 16px;
  box-shadow: 0 1.5px 7px rgba(0,51,102,.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.18s;
  font-size: 1rem;
}
.category-tabs span:hover {
  background: #FFAA1D;
  color: #fff;
  transform: scale(1.05);
}
.resource-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}

/* CONTACT (cta-banner etc.) ---------------------- */
.contact-section .cta-banner {
  background: #FFD97D;
  color: #003366;
  box-shadow: 0 3px 18px rgba(255,170,29,0.2);
  margin-top: 30px;
}
.contact-details {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
  color: #003366;
  font-family: 'Open Sans', Arial, sans-serif;
}
.location-section address {
  font-style: normal;
  color: #262C38;
  font-size: 1.06rem;
  margin-top: 10px;
}

/* FOOTER ----------------------------------------- */
footer {
  background: #003366;
  color: #fff;
  padding: 35px 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 56px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #FFAA1D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.07em;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFD97D;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #FFD97D;
}
.footer-brand img {
  height: 42px;
}
@media (max-width: 600px) {
  .footer-nav {
    gap: 10px;
    font-size: 0.94rem;
  }
  .footer-brand img {
    height: 32px;
  }
}

/* BUTTONS & LINKS -------------------------------- */
button, .cta-primary {
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s, transform 0.13s;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
}
button:active, .cta-primary:active {
  transform: scale(0.95);
}

/* FORMS ----------------------------------------- */
input, textarea, select {
  font-family: inherit;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1.5px solid #E6EAF1;
  font-size: 1rem;
  background: #fff;
  outline: none;
  transition: border 0.19s;
  margin-bottom: 20px;
}
input:focus, textarea:focus, select:focus {
  border-color: #FFAA1D;
}

/* COOKIE CONSENT BANNER & MODAL ------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #262C38;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px 24px 32px;
  z-index: 9999;
  box-shadow: 0 -7px 40px rgba(0,51,102,0.13);
  gap: 25px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: cookieAppear 0.5s cubic-bezier(.7,0,.24,1) 1;
}
@keyframes cookieAppear {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
@media (max-width:640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 16px 22px 16px;
    font-size: 0.98rem;
    gap: 16px;
  }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  border: none;
  padding: 9px 20px;
  border-radius: 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
}
.cookie-banner .accept {
  background: #FFAA1D;
  color: #003366;
  font-weight: 700;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #FFD97D;
}
.cookie-banner .reject {
  background: #fff;
  color: #003366;
  font-weight: 700;
  margin-left: 2px;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FFAA1D;
  color: #fff;
}
.cookie-banner .settings {
  background: #003366;
  color: #fff;
  font-weight: 600;
  border: 1.5px solid #FFAA1D;
}
.cookie-banner .settings:hover {
  background: #FFD97D;
  color: #003366;
}

.cookie-modal {
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 45%);
  background: #fff;
  border-radius: 18px 18px 20px 20px;
  box-shadow: 0 14px 88px rgba(0,51,102,0.15);
  width: 94%;
  max-width: 380px;
  z-index: 10000;
  padding: 35px 26px 28px 26px;
  display: none;
  flex-direction: column;
  gap: 18px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #003366;
  animation: modalAppear 0.29s cubic-bezier(.68,.05,.25,1.05);
}
@keyframes modalAppear {
  0% { opacity: 0; transform: translate(-50%, 70%); }
  100% { opacity: 1; transform: translate(-50%, 45%); }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal h2 {
  color: #003366;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  margin-bottom: 2px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #FFAA1D;
  cursor: pointer;
}
.cookie-modal .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal .cookie-toggle {
  margin-left: 10px;
  accent-color: #FFAA1D;
  transform: scale(1.2);
}
.cookie-modal .cookie-note {
  font-size: 0.93rem;
  color: #888;
  margin-bottom: 10px;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 20px;
}
.cookie-modal .modal-actions button {
  padding: 8px 22px;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-modal .modal-actions .accept {
  background: #FFAA1D;
  color: #003366;
}
.cookie-modal .modal-actions .cancel {
  background: #003366;
  color: #fff;
}

/* UNIQUE ARTISTIC DECOR (SUBTLE) ------------------- */
.hero, .cta, .footer-brand, .features, .testimonials, .client-testimonials {
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -45px;
  right: -70px;
  width: 160px;
  height: 140px;
  opacity: 0.19;
  background: url('../assets/abstract-brush-art.webp') center/contain no-repeat;
  pointer-events: none;
  z-index: 0;
}
@media (max-width:750px) {
  .hero::after {
    display: none;
  }
}
.cta::before {
  content: '';
  position: absolute;
  top: -18px; left: -22px;
  width: 60px; height: 70px;
  background: url('../assets/artistic-splash-2.svg') center/contain no-repeat;
  opacity: 0.13;
  z-index: 0;
}
.testimonials::before {
  content: '';
  position: absolute;
  right: -39px;
  top: -31px;
  width: 80px; height: 80px;
  background: url('../assets/decorative-doodle.svg') center/contain no-repeat;
  opacity: 0.11;
  z-index: 0;
}
.footer-brand::before {
  content: '';
  position: absolute;
  left: -20px;
  bottom: 0;
  width: 34px;
  height: 34px;
  background: url('../assets/star-swirls.svg') center/contain no-repeat;
  opacity: 0.15;
  z-index: 0;
}

/* ANIMATIONS & TRANSITIONS -------------------------- */
.card, .service-card, .testimonial-card, .case-card, .category-tabs span {
  transition: box-shadow 0.18s, transform 0.19s;
}
.card:hover, .service-card:hover, .testimonial-card:hover, .case-card:hover {
  box-shadow: 0 5px 24px rgba(255,170,29,0.13), 0 4px 28px rgba(0,51,102,0.12);
  transform: translateY(-3px) rotate(-0.8deg);
}

/* SCROLLBAR STYLING for vibrancy ------------------- */
body::-webkit-scrollbar {
  width: 9px;
}
body::-webkit-scrollbar-thumb {
  background: #FFAA1D;
  border-radius: 14px;
}
body::-webkit-scrollbar-track {
  background: #F5F7FA;
}

/* MEDIA QUERIES FOR RESPONSIVE DESIGN --------------- */
@media (max-width: 1300px) {
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 900px) {
  .features, .testimonials, .client-testimonials, .cta, .resources-cta {
    border-radius: 18px;
    padding: 26px 10px;
  }
  .company-features, .client-logos {
    border-radius: 12px;
    padding: 15px 0;
  }
  .section {
    margin-bottom: 38px;
    padding: 24px 10px;
  }
}
@media (max-width: 600px) {
  .footer-nav, .client-list {
    gap: 11px;
    font-size: 0.92rem;
  }
  .footer-brand span {
    font-size: 0.93rem;
  }
}

/* ACCESSIBILITY & FOCUS ----------------------------- */
a:focus, button:focus, .cta-primary:focus {
  outline: 2px solid #FFAA1D;
  outline-offset: 1.5px;
}

/* THANK-YOU PAGE SPECIAL STYLING -------------- */
.thank-you-section {
  text-align: center;
}
.thank-you-section h1 {
  color: #FFAA1D;
  font-size: 2rem;
  margin-bottom: 12px;
}
.thank-you-section p {
  font-size: 1.16rem;
}

/* PRINT ------------------------------------------------ */
@media print {
  .main-nav, .footer-nav, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  header, footer, .cta, .cta-banner, .resources-cta, .hero { background: none !important; box-shadow: none !important; }
}
