/* --------------------------------------------------
   CSS RESET & BASELINE 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,
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F2F7FA;
  color: #204060;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #0B73E2;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.7,0,.3,1);
}
a:hover, a:focus {
  color: #F26938;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --------------------------------------------------
   BRAND VARIABLES
-------------------------------------------------- */
:root {
  --brand-primary: #204060;
  --brand-secondary: #D4C6A1;
  --brand-accent: #F2F7FA;
  --brand-action: #0B73E2;
  --brand-accent-bright: #FFE066;
  --brand-success: #31C48D;
  --brand-caution: #FFD166;
  --brand-error: #FA5252;

  --heading-font: 'Montserrat', Helvetica, Arial, sans-serif;
  --body-font: 'Roboto', Arial, sans-serif;

  --radius-xl: 36px;
  --radius-lg: 22px;
  --radius: 12px;
  --shadow-1: 0 2px 12px 0 rgba(32,64,96,0.10);
  --shadow-2: 0 8px 30px rgba(89, 61, 230, 0.09);

  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap: 20px;
  --gap-lg: 30px;
  --section-padding: 40px 20px;
  --section-margin: 60px 0 0 0;

  --transition: 0.18s cubic-bezier(.7,0,.3,1);
  --transition-slow: 0.35s cubic-bezier(.7,0,.3,1);
}

/* --------------------------------------------------
   TYPOGRAPHY BASIC
-------------------------------------------------- */
h1, .h1 {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--brand-primary);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 2rem;
  color: #1F3151;
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: #484848;
  margin-bottom: 6px;
}
p {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #2d405a;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
  color: #F26938;
}
.blockquote, blockquote {
  background: #fffbe6;
  border-left: 6px solid #FFD166;
  padding: 18px 22px;
  font-style: italic;
  font-size: 1.08rem;
  border-radius: var(--radius);
  margin-bottom: 14px;
}
cite {
  display: block;
  margin-top: 10px;
  color: #295788;
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
}

/* Playful, Fun Accent Font for Display Headings */
.hero-section h1, .cta-banner h2 {
  font-family: 'Montserrat', var(--heading-font), cursive;
  font-size: 2.8rem;
  letter-spacing: -0.033em;
  color: #0B73E2;
  text-shadow: 0px 6px 24px #f7f7ff88;
  animation: float-heading 2.3s ease-in-out infinite alternate;
}
@keyframes float-heading {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* --------------------------------------------------
   SECTIONS & LAYOUT
-------------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  min-width: 310px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
  .content-wrapper {
    gap: 14px;
  }
}

/* Section spacing helpers */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: transparent;
}

/* --------------------------------------------------
   HEADER & NAVIGATION (DESKTOP & MOBILE)
-------------------------------------------------- */
header {
  background: linear-gradient(90deg, #D4C6A1 80%, #FFE066 100%);
  box-shadow: 0 2px 16px 0 #d4c6a14a;
  position: relative;
  z-index: 40;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 74px;
  padding: 10px 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  color: #204060;
  padding: 9px 15px;
  border-radius: 8px;
  transition: background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFE066;
}
.cta-btn-primary {
  background: #0B73E2;
  color: #fff!important;
  border-radius: 18px;
  font-family: var(--heading-font);
  font-size: 1.08rem;
  font-weight: 800;
  padding: 11px 32px;
  box-shadow: 0 8px 30px rgba(11,115,226,0.09);
  margin-left: 8px;
  transition: background var(--transition), transform .14s;
  border: none;
  display: inline-block;
}
.cta-btn-primary:hover, .cta-btn-primary:focus {
  background: #295788;
  color: #fff;
  transform: translateY(-2px) scale(1.03) rotate(-2deg);
  box-shadow: 0 12px 36px rgba(11,115,226,0.16);
}

.mobile-menu-toggle {
  background: #0B73E2;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.12s;
  box-shadow: 0 2px 12px #0B73E226;
  z-index: 401;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #295788;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #204060ee;
  z-index: 400;
  transform: translateX(100vw);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0;
  width: 100vw;
  height: 100vh;
  opacity: 1;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: transparent;
  color: #FFD166;
  border: none;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 30px 32px 12px 0;
  cursor: pointer;
  z-index: 405;
  transition: color .13s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.mobile-nav a {
  width: 100%;
  font-family: var(--heading-font);
  font-size: 1.25rem;
  color: #fff;
  padding: 24px 32px;
  border-bottom: 1px solid #32507655;
  transition: background 0.14s, color 0.14s, font-weight 0.18s;
  font-weight: 600;
}
.mobile-nav a:active, .mobile-nav a:focus,
.mobile-nav a:hover {
  color: #FFD166;
  background: #0B73E2;
  font-weight: 800;
}

/* Hide mobile menu by default on large screens */
@media (min-width: 993px) {
  .mobile-menu {
    display: none!important;
  }
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero-section {
  background: linear-gradient(95deg, #FFE066 26%, #D4C6A1 100%);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  box-shadow: 0 8px 40px #ffe06633;
  margin-bottom: 60px;
  position: relative;
  padding: 64px 0 46px 0;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.hero-section p {
  font-size: 1.2rem;
  font-family: var(--body-font);
}
.hero-section .cta-btn-primary {
  margin-top: 18px;
  font-size: 1.18rem;
}

/* --------------------------------------------------
   FEATURE & SERVICE GRID
-------------------------------------------------- */
.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 15px;
}
.feature {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  flex: 1 1 200px;
  min-width: 250px;
  max-width: 340px;
  padding: 24px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform .15s, box-shadow .16s;
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
  border: 4px solid transparent;
  will-change: transform, box-shadow;
  overflow: hidden;
  animation: popUp .4s both;
}
.feature img {
  height: 48px;
  width: 48px;
}
.feature h3 {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.07rem;
  margin-bottom: 2px;
}
.feature:hover, .feature:focus{
  transform: translateY(-6px) scale(1.04) rotate(-2deg);
  box-shadow: 0 16px 44px #2040602a;
  border-color: #FFD166;
}
@keyframes popUp { 0%{opacity:0; transform:translateY(30px);} 100%{opacity:1; transform:translateY(0);} }

.service-grid {
  gap: 22px;
  margin: 24px 0 32px 0;
  justify-content: flex-start;
}
.service {
  background: #FAF6ED;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 10px 0 #F2693810;
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 330px;
  padding: 26px 19px 19px 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  position: relative;
  border: 3px solid transparent;
  transition: border var(--transition), box-shadow var(--transition), transform .14s;
  will-change: transform, box-shadow;
}
.service img {
  width: 43px;
  height: 43px;
  margin-bottom: 12px;
}
.service h2 {
  font-size: 1.14rem;
  margin-bottom: 7px;
}
.service:hover, .service:focus {
  border-color: #31C48D;
  box-shadow: 0 12px 36px #31c48d25;
  transform: scale(1.025) rotate(-1.5deg);
}

/* Project list (References page) */
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.project {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 24px 18px 18px;
  min-width: 268px;
  flex: 1 1 310px;
  margin-bottom: 0;
  transition: box-shadow .11s, transform .13s;
}
.project:hover, .project:focus {
  box-shadow: 0 8px 28px #29578818;
  transform: scale(1.03) rotate(1deg);
}

/* About preview section, Service preview, Process preview, etc. */
.about-preview, .services-preview, .process-preview, .faq-preview, .contact-cta, .company-info {
  background: #FFE06611;
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 7px #D4C6A123;
  padding: 30px 26px;
  margin-bottom: 0;
  gap: 23px;
}

.process-preview ol {
  padding-left: 22px;
}
.process-preview ol li {
  padding-left: 3px;
  margin-bottom: 8px;
  font-size: 1.09rem;
}

/* USP highlight (about) */
.usp-highlight {
  background: #FFE066;
  color: #204060;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  border-radius: var(--radius);
  padding: 13px 19px;
  margin-top: 16px;
  box-shadow: 0 2px 9px #D4C6A112;
  font-weight: 800;
}

@media (max-width: 992px) {
  .feature-grid, .service-grid, .project-list, .testimonial-list {
    flex-direction: column;
  }
  .feature, .service, .testimonial-card, .project {
    max-width: 100%;
    width: 100%;
    min-width: unset;
  }
  .about-preview, .services-preview, .process-preview, .faq-preview, .contact-cta {
    padding: 22px 11px;
  }
}

/* --------------------------------------------------
   TESTIMONIALS
-------------------------------------------------- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 18px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 21px #D4C6A11a;
  border-left: 7px solid #FFD166;
  padding: 34px 28px 24px 32px;
  align-items: flex-start;
  min-width: 280px;
  max-width: 355px;
  flex: 1 1 230px;
  font-size: 1.09rem;
  color: #204060;
  margin-bottom: 0;
  position: relative;
  animation: popUp .65s;
  transition: box-shadow .15s, transform .15s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px #20406033;
  transform: scale(1.035) rotate(-1deg);
}
.testimonial-rating {
  color: #FFD166;
  font-size: 1.35rem;
  font-family: var(--heading-font);
  margin-bottom: 7px;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  color: #204060;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 8px;
}
.testimonial-card cite {
  font-style: normal;
  color: #0B73E2;
  font-weight: bold;
  font-size: 1rem;
}

/* --------------------------------------------------
   FAQ CARDS
-------------------------------------------------- */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px #D4C6A124;
  padding: 22px 20px 14px;
  min-width: 240px;
  flex: 1 1 210px;
  margin-bottom: 0;
  transition: box-shadow .12s, transform .11s;
}
.faq-item:hover {
  box-shadow: 0 12px 24px #20406012;
  transform: scale(1.025) rotate(0.5deg);
}

@media (max-width: 768px) {
  .testimonial-list, .faq-list {
    flex-direction: column;
    gap: 13px;
  }
}

/* --------------------------------------------------
   CTA BANNER
-------------------------------------------------- */
.cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #0B73E2;
  color: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px #0B73E219;
  margin-bottom: 0;
  padding: 42px 16px 36px 16px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-banner h2 {
  font-size: 2.1rem;
  color: #fff;
  text-shadow: 0 3px 17px #2973e2a6;
}
.cta-banner p {
  color: #FFF;
  margin-bottom: 13px;
  font-size: 1.13rem;
}
.cta-banner .cta-btn-primary {
  margin-top: 7px;
  font-size: 1.13rem;
  box-shadow: 0 6px 20px #FFD1661d;
  background: #FFD166;
  color: #204060!important;
  font-weight: 900;
}
.cta-banner .cta-btn-primary:hover, .cta-banner .cta-btn-primary:focus {
  background: #fffbe6;
  color: #0B73E2!important;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  background: #204060;
  color: #fff;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: 66px;
  padding: 26px 0 8px 0;
  box-shadow: 0 -2px 19px #20406022;
}
.footer-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}
.footer-nav a {
  color: #FFD166;
  font-family: var(--heading-font);
  transition: color .17s;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1rem;
}
.footer-contact img {
  margin-right: 7px;
  vertical-align: middle;
  height: 22px;
  width: 22px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  color: #dbe7fa;
}
footer a img {
  height: 38px;
}
@media (max-width: 700px) {
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
  }
  footer {
    padding-bottom: 20px;
  }
}

/* --------------------------------------------------
   LEGAL / INFO CONTENT STYLES (for privacy, terms)
-------------------------------------------------- */
.legal-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  color: #16314b;
  box-shadow: 0 1px 7px #D4C6A123;
}
.legal-content h2, .legal-content h3 {
  color: #204060;
  margin-top: 26px;
}
.legal-content ul {
  padding-left: 25px;
  margin-bottom: 16px;
}
.legal-content li {
  list-style: disc;
  margin-bottom: 8px;
  font-size: 1rem;
}

/* Info Message */
.info-message {
  background: #F2693820;
  color: #F26938;
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 1.09rem;
  margin: 21px 0 0 0;
}

/* --------------------------------------------------
   RESPONSIVE LAYOUT & SPACING
-------------------------------------------------- */
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .hero-section { padding: 30px 0 18px 0; }
  section { padding: 22px 0; }
  .about-preview, .services-preview, .process-preview, .cta-banner { padding: 19px 8px; } 
  .footer-flex { gap:10px; }
}

/* --------------------------------------------------
   ANIMATIONS & MICRO-INTERACTIONS
-------------------------------------------------- */
.card, .feature, .service, .testimonial-card, .faq-item, .project {
  transition: box-shadow .15s, transform .13s, border-color .12s;
}
button, .cta-btn-primary, input[type="submit"] {
  cursor: pointer;
  transition: background .16s, color .13s, transform .14s;
}

/* Fun Bounce Animation for Hovered Buttons */
.cta-btn-primary:hover, .cta-btn-primary:focus {
  animation: button-bounce .45s 1;
}
@keyframes button-bounce {
  0% { transform: translateY(0) scale(1); }
  35% { transform: translateY(-4px) scale(1.06); }
  60% { transform: translateY(2px) scale(0.98); }
  100% { transform: translateY(0) scale(1); }
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe6;
  box-shadow: 0 -3px 23px #FFD16644;
  border-top: 4px solid #FFD166;
  z-index: 7000;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100vw;
  animation: slideUp 0.7s cubic-bezier(.7,0,.3,1);
}
@keyframes slideUp {
  from { transform: translateY(120%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner__text {
  color: #204060;
  font-size: 1.08rem;
  margin-right: 14px;
}
.cookie-banner .cookie-btn {
  background: #204060;
  color: #fff;
  border: none;
  border-radius: 13px;
  padding: 10px 23px;
  margin-left: 8px;
  font-size: 1rem;
  font-family: var(--heading-font);
  font-weight: 700;
  cursor: pointer;
  transition: background .16s, color .14s, transform .12s;
  box-shadow: 0 2px 10px #20406015;
}
.cookie-banner .cookie-btn.settings {
  background: #FFD166;
  color: #204060;
  font-weight: 800;
  box-shadow: 0 2px 10px #FFD16626;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #0B73E2;
  color: #fff;
  transform: scale(1.04);
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  background: #FAF6ED;
  color: #204060;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 18px 6px 14px 8px;
  }
  .cookie-banner__text { margin: 0 0 6px 0; }
  .cookie-banner .cookie-btn { padding: 10px 13px; font-size: .98rem; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 42px #29578833;
  padding: 30px 25px 25px 25px;
  z-index: 9999;
  width: 96vw;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: fadeInScale .45s cubic-bezier(.7,0,.3,1);
}
@keyframes fadeInScale {
  from { opacity: 0; transform: translate(-50%,-50%) scale(0.7); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.40rem;
  margin-bottom: 7px;
}
.cookie-modal__close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: transparent;
  border: none;
  color: #204060;
  font-size: 1.7rem;
  cursor: pointer;
  z-index: 10001;
}
.cookie-modal .cookie-category {
  margin: 11px 0;
  padding: 9px 0 6px 0;
  border-bottom: 1px solid #20406015;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: bold;
  font-size: 1.05rem;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #0B73E2;
  transform: scale(1.23);
}
.cookie-modal .toggle-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  background: #204060;
  color: #fff;
  border: none;
  border-radius: 11px;
  font-family: var(--heading-font);
  padding: 8px 20px;
  font-size: 1rem;
  margin-left: 0;
  box-shadow: 0 2px 6px #20406016;
}
.cookie-modal .cookie-btn.cancel {
  background: #FFD166;
  color: #204060;
  font-weight: 700;
}
.cookie-modal .cookie-btn:hover, .cookie-modal .cookie-btn:focus {
  background: #0B73E2;
  color: #fff;
}
.cookie-modal .cookie-btn.cancel:hover,
.cookie-modal .cookie-btn.cancel:focus {
  background: #FAF6ED;
  color: #204060;
}
@media (max-width: 480px) {
  .cookie-modal { padding: 14px 5px 18px 7px; }
}

/* --------------------------------------------------
   FORM ELEMENTS
-------------------------------------------------- */
input, textarea, select {
  border-radius: var(--radius);
  border: 1.5px solid #D4C6A1;
  font-size: 1.06rem;
  padding: 14px 12px;
  color: #204060;
  font-family: var(--body-font);
  margin-bottom: 14px;
}
input:focus, textarea:focus, select:focus {
  border-color: #0B73E2;
  outline: none;
  background: #fffbe6;
}
input[type=submit], button[type=submit] {
  background: #31C48D;
  color: #fff;
  border-radius: 12px;
  padding: 11px 35px;
  font-family: var(--heading-font);
  font-size: 1.12rem;
  font-weight: 600;
  margin-top: 6px;
  border: none;
  transition: background .14s;
}
input[type=submit]:hover, input[type=submit]:focus,
button[type=submit]:hover, button[type=submit]:focus {
  background: #204060;
  color: #FFD166;
}

/* --------------------------------------------------
   MISC (ULs, OLs, LIST ICONS)
-------------------------------------------------- */
ul, ol {
  margin-bottom: 13px;
  margin-left: 24px;
}
ul > li::marker, ol > li::marker {
  color: #FFD166;
  font-size: 1.1em;
}
ul > li, ol > li {
  padding-left: 6px;
  margin-bottom: 8px;
}

/* Custom styled list with tile/check-mark icon */
.text-section ul > li img {
  vertical-align: text-bottom;
  height: 21px;
  width: 21px;
  margin-right: 5px;
}

/* --------------------------------------------------
   UTILITIES (spacing, text-center, pipes)
-------------------------------------------------- */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px!important; }
.mb-32 { margin-bottom: 32px!important; }
.mt-60 { margin-top: 60px!important; }
.gap { gap: 30px; }
.w-100 { width: 100%!important; }
.max-w-md { max-width: 520px; }
@media (max-width: 600px) {
  .mt-24, .mb-32, .mt-60 { margin-top: 12px!important; margin-bottom:12px!important }
  .max-w-md { max-width:100%; }
}

/* --------------------------------------------------
   ERROR/SUCCESS/CALL OUT COLORS
-------------------------------------------------- */
.alert-success {
  background: #f3fdf7;
  color: #1a814d;
  border-left: 5px solid #31C48D;
  border-radius: var(--radius);
  padding: 13px 18px;
}
.alert-error {
  background: #fff5f6;
  color: #FA5252;
  border-left: 5px solid #FA5252;
  border-radius: var(--radius);
  padding: 13px 18px;
}

/* --------------------------------------------------
   PRINT STYLES
-------------------------------------------------- */
@media print {
  header, footer, .mobile-menu, .cookie-banner { display: none!important; }
  body, main { background: #fff !important; color: #000 !important; }
}
