/* 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, 
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: #F9FBFF;
  color: #2D3A43;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #17496E;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #F2AE2E;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}

/* BRAND VARIABLES --------------------------- */
:root {
  --primary: #17496E;
  --secondary: #F2AE2E;
  --accent: #FFFFFF;
  --brand-blue: #17496E;
  --brand-yellow: #F2AE2E;
  --brand-orange: #FF7531;
  --brand-ltblue: #DFF2FF;
  --brand-green: #44DBAA;
  --gray-bg: #F7F7FA;
  --shadow: 0 3px 18px rgba(20,40,85,0.08);
  --radius: 18px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* TYPOGRAPHY ------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #17496E;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 22px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
h4, h5, h6 { font-size: 1.125rem; }
p, li, blockquote { font-size: 1rem; color: #29323A; line-height: 1.6; }
strong { color: var(--brand-orange); font-weight: bold; }

@media (max-width: 480px) {
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.22rem;
  }
}

/* CONTAINER & SPACING ---------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section,
.about-section, .values-section, .services-section, .benefits-section, .cta-section, .faq-section, .legal-section, .steps-section, .contact-section, .contact-details-section, .thank-you-section, .pricing-section, .info-section, .faq-preview, .steps, .features, .cta, .testimonials, .testimonials-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section, .about-section, .values-section, .services-section, .benefits-section, .cta-section, .faq-section, .legal-section, .steps-section, .contact-section, .contact-details-section, .thank-you-section, .pricing-section, .info-section, .faq-preview, .steps, .features, .cta, .testimonials, .testimonials-section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
}

/* FLEX LAYOUT PATTERNS ---------------------- */
.card-container, .feature-grid, .service-grid, .step-list, .step-by-step, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature, .service, .step, .testimonial-card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 260px;
  max-width: 360px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BUTTONS ----------------------------------- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  background: var(--secondary);
  color: #fff;
  border: none;
  outline: none;
  border-radius: 32px;
  padding: 14px 34px;
  box-shadow: var(--shadow);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s, transform 0.11s;
  margin-top: 6px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.04);
  position: relative;
  z-index: 1;
}
.cta-button:hover,
.cta-button:focus {
  background: #ffb441;
  color: #17496E;
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 4px 24px rgba(242,174,46,0.13);
}

button, .button {
  font-family: var(--font-display);
  border-radius: 24px;
  border: none;
  padding: 9px 23px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: var(--brand-orange);
  color: var(--primary);
  outline: 2px solid var(--secondary);
}
.button.secondary, .cta-button.secondary {
  background: var(--gray-bg);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.button.secondary:hover, .cta-button.secondary:hover {
  background: var(--primary);
  color: #fff;
}

/* HEADER & NAV ----------------------------- */
header {
  background: var(--primary);
  width: 100%;
  box-shadow: 0 6px 28px rgba(23,73,110,0.06);
  position: relative;
  z-index: 30;
  min-height: 74px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  min-height: 74px;
}
.logo img {
  height: 45px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.17s;
}
.main-nav a:hover,
.main-nav a:focus {
  border-bottom: 2px solid var(--secondary);
  color: var(--secondary);
}
.cta-button {
  margin-left: 18px;
}

@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .logo img {
    height: 38px;
  }
}

/* MOBILE NAV ------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.1rem;
  padding: 6px 17px 6px 6px;
  cursor: pointer;
  z-index: 60;
  line-height: 1;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(23,73,110,0.97);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.40s cubic-bezier(0.88,0,0.41,0.99), opacity 0.27s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 22px 26px 0 0;
  cursor: pointer;
  transition: color 0.22s, transform 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--secondary);
  transform: rotate(9deg) scale(1.15);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 40px 0 0 28px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 13px 0;
  width: 100%;
  transition: color 0.19s, background 0.11s;
  border-radius: 10px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--secondary);
  background: rgba(255,255,255,0.13);
  outline: none;
}

/* HERO ------------------------------------- */
.hero {
  background: linear-gradient(96deg, #F2AE2E 20%, #FFD657 95%);
  border-bottom-left-radius: 84px 34px;
  border-bottom-right-radius: 84px 34px;
  box-shadow: 0 27px 65px -21px #fad968;
  min-height: 340px;
  display: flex;
  align-items: center;
  animation: slideFadeIn 1.7s cubic-bezier(0.11,1,0.26,1);
}
.hero .container {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0 8px 0;
}
.hero h1 {
  color: var(--primary);
  font-weight: 900;
  text-shadow: 0 2px 20px #ffe3824a;
  font-size: 2.4rem;
}
.hero p {
  color: #67481C;
  font-size: 1.13rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero {
    min-height: 210px;
    padding: 18px 0 16px 0;
    border-bottom-left-radius: 40px 18px;
    border-bottom-right-radius: 40px 18px;
  }
  .hero .container {
    padding: 0 5px;
  }
  .hero h1 {
    font-size: 1.35rem;
  }
}

/* FEATURES & SERVICES ---------------------- */
.feature-grid, .service-grid {
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.feature, .service {
  background: #fff;
  border-radius: var(--radius);
  padding: 27px 26px 23px;
  min-width: 230px;
  flex-grow: 1;
  box-shadow: 0 5px 26px 0 rgba(23,73,110,0.07); 
  min-height: 260px;
  max-width: 290px;
  align-items: flex-start;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s, background 0.20s;
  animation: fadeUp 0.6s;
}
.feature img, .service img {
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  filter: drop-shadow(0 3px 12px #FFEBC8);
  transition: transform 0.17s;
}
.feature:hover, .service:hover {
  background: #FFFBEE;
  box-shadow: 0 4px 36px rgba(255,213,87,0.13);
  transform: scale(1.03) rotate(-1.2deg);
}
.feature:hover img, .service:hover img {
  transform: scale(1.12) rotate(-7deg);
}
.feature h3, .service h2 {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 800;
}

/* STEPS ------------------------------------ */
.step-list, .step-by-step {
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
}
.step {
  background: linear-gradient(115deg, var(--gray-bg) 70%, #FDF6E0 110%);
  border-radius: var(--radius);
  padding: 18px 20px 21px;
  flex: 1 1 210px;
  max-width: 300px;
  align-items: flex-start;
  box-shadow: 0 5px 23px rgba(23,73,110,0.07);
  position: relative;
  transform: translateY(10px);
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
}
.step img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}
.step h3, .step h2 {
  font-weight: 700;
  color: var(--brand-orange);
}

/* TESTIMONIALS ----------------------------- */
.testimonials {
  background: var(--gray-bg);
  border-radius: 60px 60px 0 0/50px 50px 0 0;
  box-shadow: 0 -6px 36px -15px #e5eeff93;
}
.testimonials h2 {
  margin-bottom: 26px;
  color: var(--brand-blue);
}
.testimonial-slider {
  gap: 22px;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.testimonial-card blockquote {
  color: #1D2C3A;
  font-size: 1.13rem;
  font-style: italic;
  margin-bottom: 8px;
  position: relative;
}
.testimonial-meta {
  color: #6E4700;
  font-size: 0.97rem;
  font-family: var(--font-display);
  margin-top: 4px;
}
@media (max-width: 800px) {
  .testimonial-slider {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* TABLES ----------------------------------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 22px 0 30px 0;
  overflow: hidden;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 10px;
  text-align: left;
  border-bottom: 2px solid #F2AE2E11;
  font-size: 1.05rem;
}
.pricing-table th {
  background: #FFD657;
  color: var(--primary);
  font-weight: 800;
  font-family: var(--font-display);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 600px) {
  .pricing-table th,
  .pricing-table td {
    padding: 10px 3px;
    font-size: 0.98rem;
  }
}

/* ACCORDIONS (FAQ) ------------------------- */
.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 24px 0 14px 0;
}
.accordion-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 0 18px;
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.23s;
  border-bottom: 3px solid #FFD65744;
}
.accordion-item h2 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 800;
}
.accordion-item.open, .accordion-item:focus {
  background: #FFFBE8;
  box-shadow: 0 3px 22px -5px #f2ae2e37;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.77,0,0.18,1);
  color: #29323A;
  font-size: 1rem;
}
.accordion-item.open .accordion-content {
  max-height: 250px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  transition: max-height 0.55s cubic-bezier(0.88,0,0.41,0.99);
}

/* CARD ------------------------------------- */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.19s, box-shadow 0.15s;
  min-width: 220px;
  max-width: 380px;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(23,73,110,0.11);
  transform: translateY(-2px) scale(1.03) rotate(1.4deg);
}

/* ULs & LIs -------------------------------- */
ul li, ol li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
  color: #425267;
}
ul li:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--secondary);
  border-radius: 50%;
  display: inline-block;
}

.values-section ul li:before, .legal-section ul li:before {
  background: var(--brand-orange);
}

.extra-services ul li, .benefits-section ul li, .info-section ul li, .contact-details-section ul li {
  padding-left: 0;
}
.extra-services ul li:before, .benefits-section ul li:before, .info-section ul li:before, .contact-details-section ul li:before {
  display: none;
}

/* TEXT SECTIONS ---------------------------- */
.text-section {
  margin-bottom: 18px;
}
.text-section h3 {
  font-size: 1.12rem;
  color: var(--brand-blue);
  font-weight: 700;
  margin-bottom: 7px;
}
.text-section p {
  font-size: 1rem;
}

/* CONTACT INFO ----------------------------- */
.contact-info, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 9px;
}
.contact-info span, .footer-contact span {
  font-size: 0.96rem;
  color: #4C5C72;
  line-height: 1.54;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-info img, .footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  opacity: 0.77;
}

/* FOOTER ----------------------------------- */
footer {
  background: #163b55;
  color: #fff;
  padding: 44px 0 26px 0;
  border-top-left-radius: 60px 42px;
  border-top-right-radius: 60px 42px;
  margin-top: 32px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}
footer .logo img {
  height: 43px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav a {
  color: #FFD657;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.15s, text-decoration 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FF7531;
  text-decoration: underline wavy #FFD657;
}
.footer-contact {
  gap: 6px;
  font-size: 0.97rem;
}
footer a.logo {
  margin-right: 33px;
}
footer .logo img {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  footer {
    border-top-left-radius: 30px 11px;
    border-top-right-radius: 30px 11px;
  }
}

/* FORM FIELDS ------------------------------ */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid #E9F0F7;
  color: #17496E;
  background: #F9FBFF;
  border-radius: 8px;
  padding: 12px 15px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
  transition: border-color 0.16s, box-shadow 0.14s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px #ffd65777;
}

/* COOKIE CONSENT BANNER -------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff6dd;
  color: #17496E;
  box-shadow: 0 -3px 24px rgba(242,174,46,0.18);
  padding: 24px 20px 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  z-index: 2000;
  font-size: 1rem;
  animation: slideInBottom 0.62s;
}
@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px 5vw 12px 5vw;
  }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner button {
  border: none;
  outline: none;
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: bold;
  border-radius: 20px;
  padding: 9px 19px;
  box-shadow: var(--shadow);
  transition: background 0.18s, color 0.18s, transform 0.11s;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: var(--brand-orange);
  color: var(--brand-blue);
  transform: scale(1.08);
}
.cookie-banner .settings-btn {
  background: #fff;
  color: var(--brand-blue);
  border: 2px solid var(--secondary);
}
.cookie-banner .settings-btn:hover,
.cookie-banner .settings-btn:focus {
  background: var(--brand-yellow);
  color: var(--primary);
}

/* COOKIE MODAL ----------------------------- */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(23,73,110,0.48);
  z-index: 4180;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) scale(0.95);
  background: #fff;
  max-width: 370px;
  width: 88vw;
  border-radius: 18px;
  box-shadow: 0 18px 44px -14px #F2AE2E44;
  z-index: 5000;
  padding: 28px 26px 21px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s, transform 0.23s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  font-family: var(--font-display);
  color: var(--brand-blue);
  margin-bottom: 6px;
  font-size: 1.3rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: var(--font-display);
  color: #29323A;
}
.cookie-switch {
  width: 40px;
  height: 22px;
  background: #f1f1f1;
  border-radius: 14px;
  position: relative;
  margin-right: 7px;
  flex-shrink: 0;
  transition: background 0.17s;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px #17496e22;
  transition: left 0.17s, background 0.20s;
}
.cookie-switch input:checked + .cookie-switch-slider {
  left: 20px;
  background: var(--brand-green);
}
.cookie-category.essential .cookie-switch {
  background: var(--brand-green);
}
.cookie-category.essential label {
  color: #20b985;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.7rem;
  position: absolute;
  right: 9px;
  top: 5px;
  cursor: pointer;
  line-height: 1;
  z-index: 12;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--secondary);
}

/* PLAYFUL DYNAMIC DETAILS ------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideFadeIn {
  0% { opacity:0; transform: translateY(-60px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes slideInBottom {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

.cta {
  background: linear-gradient(92deg, #FFFBEE 70%, #fffaed 100%);
  border-radius: var(--radius);
  box-shadow: 0 2px 18px #ffe48444;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta p {
  font-size: 1.13rem;
  color: #4D3906;
  margin-bottom: 8px;
}

/**** RESPONSIVE LAYOUTS (MOBILE FIRST) ****/
@media (max-width: 1020px) {
  .feature-grid, .service-grid, .step-list, .step-by-step {
    gap: 18px;
    align-items: stretch;
  }
  .feature, .service, .step {
    min-width: 170px;
    max-width: 320px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .service-grid, .step-list, .step-by-step {
    flex-direction: column;
    gap: 21px;
    align-items: stretch;
  }
  .feature, .service, .step {
    min-width: 90%;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
  }
  .testimonial-card {
    min-width: 94vw;
    max-width: 99vw;
    padding: 13px 9px;
  }
  footer {
    padding: 24px 0 7px 0;
  }
  .section {
    padding: 8px 3px;
    margin-bottom: 17px;
  }
}

/**** THANK YOU SECTION (fun) ****/
.thank-you-section {
  background: #FFF7E2;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px #ffdac080;
  text-align: center;
}
.thank-you-section .cta-button {
  margin: 22px auto 0;
}

/* PLAYFUL HIGHLIGHTS ----------------------- */
h1, h2 {
  position: relative;
}
h1:after, h2:after {
  content: '';
  display: block;
  width: 56px;
  height: 6px;
  background: var(--secondary);
  border-radius: 3px;
  margin-top: 7px;
  position: relative;
  left: 0;
}
h2:after {
  width: 33px;
  height: 4px;
  margin-top: 5px;
}

/* FUN FONTS (for playful_dynamic) ---------- */
h1, h2, .cta-button, .main-nav a, .mobile-nav a, .footer-nav a {
  letter-spacing: 0.03em;
}

/* MICRO INTERACTIONS ----------------------- */
a, .cta-button, button {
  transition: color 0.16s, background 0.17s, box-shadow 0.15s, transform 0.11s;
}
a:hover, a:focus {
  color: var(--brand-orange);
}

/* HIDE PRINTED COOKIE/ONLOAD ELEMENTS (usable for JS) */
.cookie-modal, .cookie-modal-backdrop {
  display: none;
}
.cookie-modal.open, .cookie-modal-backdrop.open {
  display: block;
}

/* ACCESSIBILITY FOCUS ---------------------- */
:focus-visible {
  outline: 2.5px solid #F2AE2E;
  outline-offset: 1px;
}

/* CUSTOM SCROLLBAR - playful */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 16px;
}
body::-webkit-scrollbar-track {
  background: #F9FBFF;
}

/**** END OF STYLE.CSS ****/
