/* --- 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;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 16px;
  color: #1A3365;
  background: #F6F8FA;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button {
  cursor: pointer;
}
strong {
  font-weight: 700;
}

/* --- FONT IMPORTS (Montserrat for display, Open Sans for body) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary: #1A3365;
  --primary-dark: #112040;
  --secondary: #18A183;
  --secondary-dark: #137766;
  --accent: #F6F8FA;
  --muted: #EFF2F6;
  --text: #1A3365;
  --text-light: #43516f;
  --white: #fff;
  --shadow: 0 4px 20px 0 rgba(26,51,101,0.07);
  --radius-main: 14px;
  --radius-card: 10px;
  --transition: all 0.2s cubic-bezier(.59,.01,.46,.99);
}

body {
  font-family: 'Open Sans', serif;
  color: var(--text);
  background: var(--accent);
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Georgia, serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.15; margin-bottom: 20px; }
h3 { font-size: 1.25rem; line-height: 1.18; margin-bottom: 10px; }
p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 14px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1130px;
  width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 90;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-family: 'Montserrat', serif;
}
.main-nav a {
  color: var(--primary-dark);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-main);
  transition: var(--transition);
  font-size: 1rem;
  position: relative;
  background: none;
}
.main-nav a.btn-primary {
  background: var(--secondary);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(24,161,131,0.08);
  transition: var(--transition);
}
.main-nav a:not(.btn-primary):hover, .main-nav a:not(.btn-primary):focus {
  color: var(--secondary-dark);
  background: var(--muted);
  text-decoration: none;
}
.main-nav a.btn-primary:hover, .main-nav a.btn-primary:focus {
  background: var(--secondary-dark);
  color: var(--white);
}
.main-nav img {
  height: 34px;
  width: auto;
  margin-right: 18px;
  margin-bottom: 0;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--white);
  border: 1px solid var(--primary);
  border-radius: 6px;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 14px;
  right: 22px;
  z-index: 106;
  color: var(--primary-dark);
  transition: var(--transition);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--muted);
  color: var(--secondary-dark);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 105;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 2px 36px 0 rgba(26,51,101,0.13);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 52px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px; right: 22px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary-dark);
  z-index: 110;
  transition: color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 28px 36px 0 36px;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.25rem;
  padding: 16px 2px;
  color: var(--primary-dark);
  border-bottom: 1px solid var(--accent);
  border-radius: 0;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: var(--accent);
  border-radius: var(--radius-card);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 10px;
    font-size: 1rem;
  }
  .main-nav a {
    padding: 7px 10px;
  }
}
@media (max-width: 900px) {
  .main-nav > a:not(:first-child) {
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- HERO --- */
.hero {
  padding-top: 48px;
  padding-bottom: 48px;
  background: var(--accent);
  border-bottom: 1px solid var(--muted);
}
.hero .container {
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 590px;
  margin-bottom: 30px;
}
.hero .btn-primary {
  font-size: 1.2rem;
  padding: 14px 42px;
}

/* --- FLEXBOX CARD & SECTION LAYOUTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 8px 38px 0 rgba(26,51,101,0.14);
  transform: translateY(-2px) scale(1.015);
}
.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;
}
/* Responsive switch for text-image */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius-main);
  padding: 20px 26px 22px 26px;
  margin-bottom: 24px;
  min-width: 240px;
  max-width: 420px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(26,51,101,0.10);
  transform: translateY(-1px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--accent);
  border-radius: var(--radius-card);
  padding: 18px 18px 16px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(24,161,131,0.07);
}

/* --- FEATURES --- */
.features {
  padding-top: 38px;
  padding-bottom: 46px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid li {
  flex: 1 1 210px;
  max-width: 260px;
  min-width: 195px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 24px 18px 18px 18px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.16s, transform 0.18s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 36px 0 rgba(26,51,101,0.10);
  transform: translateY(-2px) scale(1.01);
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}
.feature-grid h3 {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.14rem;
  margin-bottom: 8px;
  margin-top: 0;
}
.feature-grid p {
  font-size: 1rem;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 20px;
  }
  .feature-grid li {
    flex: 1 1 40%;
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li {
    min-width: 0;
    max-width: 100%;
  }
}

/* --- ABOUT VALUES GRID --- */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}
.values-grid li {
  flex: 1 1 215px;
  background: var(--accent);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 16px 0 rgba(26,51,101,0.06);
  padding: 24px 18px 18px 18px;
  min-width: 180px;
  max-width: 275px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.19s;
}
.values-grid li:hover {
  box-shadow: 0 10px 32px 0 rgba(26,51,101,0.10);
  transform: translateY(-2px) scale(1.01);
}
.values-grid img {
  height: 34px;
  width: 34px;
  margin-bottom: 8px;
}
.values-grid strong {
  color: var(--primary);
  font-size: 1.07rem;
  margin-bottom: 6px;
}
.values-grid p {
  font-size: 1rem;
}
@media (max-width: 800px) {
  .values-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* --- SERVICE LIST --- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
  margin-bottom: 8px;
}
.service-list li {
  flex: 1 1 215px;
  min-width: 190px;
  max-width: 320px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  transition: box-shadow 0.16s, transform 0.17s;
}
.service-list li:hover {
  box-shadow: 0 8px 31px 0 rgba(26,51,101,0.10);
  transform: translateY(-2px) scale(1.015);
}
.service-list img {
  height: 31px;
  width: 31px;
  margin-bottom: 6px;
}
.service-list h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary);
}
.service-list p {
  font-size: 1rem;
  color: var(--text-light);
}
@media (max-width: 800px) {
  .service-list {
    gap: 14px;
  }
  .service-list li {
    min-width: 0;
    max-width: 100%;
  }
}

/* --- CTA BLOCKS --- */
.cta-block {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-main);
  box-shadow: 0 4px 40px 0 rgba(26,51,101,0.13);
  margin-bottom: 60px;
  padding: 42px 0;
}
.cta-block h2,
.cta-block p {
  color: var(--white);
}
.cta-block .btn-primary {
  margin-top: 26px;
  background: var(--secondary);
  color: var(--white);
  font-size: 1.1rem;
}
.cta-block .btn-primary:hover {
  background: var(--secondary-dark);
}

/* --- TESTIMONIALS --- */
.testimonials-home, .testimonials-section {
  margin-top: 34px;
  margin-bottom: 52px;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.star-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}
.star-rating img {
  width: 22px;
  height: 22px;
}
.testimonial-card p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.66;
  margin-bottom: 8px;
}
.testimonial-card strong {
  display: block;
  color: var(--secondary);
  font-size: 1.07rem;
  margin-top: 6px;
  font-family: 'Montserrat', serif;
}

@media (max-width: 800px) {
  .testimonial-slider, .testimonial-list {
    gap: 15px;
    flex-direction: column;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

/* --- LEGAL --- */
.legal {
  background: var(--white);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow);
  margin-top: 34px;
  margin-bottom: 54px;
  padding: 36px 0px;
}
.legal .text-section ul, .legal .text-section ol {
  margin-left: 24px;
  margin-top: 10px;
  margin-bottom: 14px;
  list-style: disc;
  color: var(--text-light);
  font-size: 1rem;
}
.legal .text-section li {
  margin-bottom: 8px;
  line-height: 1.66;
}

/* --- SPECIAL ELEMENTS --- */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 0;
  padding-left: 0;
  color: var(--primary);
  font-size: 1.13rem;
  font-weight: 600;
  list-style: disc inside;
}
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}
.steps-timeline li {
  background: var(--accent);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 6px 0 rgba(26,51,101,0.06);
  padding: 22px 24px 14px 24px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.steps-timeline img {
  width: 31px;
  height: 31px;
  margin-bottom: 8px;
}
.stats .statistics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 24px;
}
.stats .statistics-grid li {
  flex: 1 1 180px;
  min-width: 150px;
  max-width: 255px;
  background: var(--muted);
  border-radius: var(--radius-card);
  padding: 24px 15px;
  text-align: center;
  font-size: 1.06rem;
  box-shadow: 0 2px 10px 0 rgba(26,51,101,0.05);
}
.stats .statistics-grid strong {
  font-size: 1.66rem;
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-family: 'Montserrat', serif;
  font-weight: 700;
}
@media (max-width: 900px) {
  .stats .statistics-grid {
    gap: 13px;
  }
}
@media (max-width: 700px) {
  .stats .statistics-grid {
    flex-direction: column;
  }
  .stats .statistics-grid li {
    min-width: 0;
    max-width: 100%;
  }
}

/* --- CONTACT DETAILS --- */
.contact-details .text-section p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  margin-bottom: 9px;
  color: var(--primary);
}
.contact-details .text-section strong {
  font-family: 'Montserrat', serif;
  font-size: 1.02rem;
}
.contact-details .text-section img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- BUTTONS --- */
.btn-primary {
  background: var(--secondary);
  color: var(--white);
  padding: 12px 33px;
  border-radius: var(--radius-main);
  font-size: 1rem;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 700;
  text-align: center;
  transition: background 0.18s, box-shadow 0.16s, color 0.18s;
  margin-top: 20px;
  display: inline-block;
  box-shadow: 0 3px 16px 0 rgba(24,161,131,0.09);
  border: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary-dark);
  color: var(--white);
  box-shadow: 0 6px 18px 0 rgba(24,161,131,0.19);
  text-decoration: none;
  outline: 0;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 36px 0 0 0;
  margin-top: 70px;
  box-shadow: 0 -2px 40px 0 rgba(26,51,101,0.09);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.footer-nav a {
  color: var(--white);
  opacity: 0.88;
  font-family: 'Open Sans', serif;
  font-size: 1rem;
  transition: color 0.16s, opacity 0.2s;
}
.footer-nav a:hover { opacity: 1; color: var(--secondary);}
.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: 'Open Sans', serif;
  font-size: 0.99rem;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 12px 0 0;
  color: var(--accent);
}
.footer-contact img {
  height: 17px;
  width: 17px;
  opacity: 0.88;
}
.footer-brand {
  text-align: center;
  color: var(--muted);
  font-size: 0.93rem;
  opacity: 0.93;
  padding-bottom: 24px;
}
@media (max-width: 740px){
  .footer-contact {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
  .footer-nav{
    gap: 16px;
  }
}

/* --- GENERAL SECTION SPACING --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 700px){
  section {
    padding: 18px 6px;
    margin-bottom: 32px;
  }
}

/* --- CONFIRMATION PAGE --- */
.confirmation .btn-primary {
  margin-top: 30px;
}

/* --- ANIMATIONS & MICROINTERACTIONS --- */
.btn-primary, .mobile-menu, .mobile-menu-close, .mobile-nav a, .card, .feature-grid li,
.service-list li, .testimonial-card {
  transition: var(--transition);
}
.teaser-underline {
  position: relative;
  display: inline-block;
}
.teaser-underline:after {
  content: '';
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--secondary);
  border-radius: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.24s var(--transition);
}
.teaser-underline:hover:after {
  transform: scaleX(1);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9991;
  width: 100vw;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 -2px 18px 0 rgba(26,51,101,0.08);
  padding: 22px 20px 22px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 1.07rem;
  border-top-left-radius: var(--radius-main);
  border-top-right-radius: var(--radius-main);
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-text {
  flex: 1 1 auto;
  max-width: 600px;
  color: var(--text-light);
  font-size: 1rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 10px;
}
.cookie-banner button {
  font-family: 'Montserrat', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: var(--radius-main);
  border: none;
  outline: 0;
  margin: 0 2px;
  transition: background 0.15s;
}
.cookie-banner .cookie-accept {
  background: var(--secondary);
  color: var(--white);
}
.cookie-banner .cookie-accept:hover { background: var(--secondary-dark); }
.cookie-banner .cookie-reject {
  background: var(--muted);
  color: var(--primary);
  border: 1px solid var(--secondary);
}
.cookie-banner .cookie-reject:hover { background: #e2ece7; }
.cookie-banner .cookie-settings {
  background: var(--primary);
  color: var(--white);
}
.cookie-banner .cookie-settings:hover { filter: brightness(0.93); }

@media (max-width: 700px){
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 13px 8px 11px 8px;
    gap: 11px;
  }
  .cookie-banner .cookie-btns {
    flex-direction: row;
    gap: 7px;
  }
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(26,51,101,0.36);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity 0.25s, transform 0.2s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.cookie-modal-inner {
  background: var(--white);
  border-radius: var(--radius-main);
  box-shadow: 0 8px 48px 0 rgba(26,51,101,0.16);
  max-width: 420px;
  width: 95vw;
  padding: 28px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 0;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-close:hover,.cookie-modal-close:focus {
  color: var(--secondary);
  background: var(--accent);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--muted);
  font-size: 1.07rem;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-size: 1.07rem;
}
.cookie-toggle {
  width: 46px;
  height: 26px;
  border-radius: 19px;
  background: var(--muted);
  position: relative;
  display: inline-block;
  vertical-align: middle;
  transition: background 0.15s;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle .slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 20px; height: 20px;
  background: var(--secondary);
  border-radius: 50%;
  transition: transform 0.18s, background 0.16s;
}
.cookie-toggle input[type="checkbox"]:checked + .slider {
  background: var(--primary);
  transform: translateX(18px);
}
.cookie-category[aria-disabled='true'] .cookie-toggle {
  opacity: 0.65;
  pointer-events: none;
}
.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-footer button {
  font-family: 'Montserrat', serif;
  font-weight: 700;
  padding: 10px 24px;
  font-size: 1rem;
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius-main);
  border: none;
  transition: background 0.16s;
}
.cookie-modal-footer button:last-child {
  background: var(--primary);
}
.cookie-modal-footer button:hover,
.cookie-modal-footer button:focus {
  filter: brightness(0.93);
}
@media (max-width: 480px){
  .cookie-modal-inner {
    padding: 18px 8px 14px 8px;
  }
  .cookie-modal-header h2 {
    font-size: 1.1rem;
  }
  .cookie-category label {
    font-size: 1rem;
  }
}

/* --- FORM ELEMENTS (for future use) --- */
input, textarea, select {
  background: var(--white);
  border: 1px solid var(--muted);
  border-radius: var(--radius-card);
  padding: 11px 14px;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 14px;
  transition: border-color 0.19s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 600px){
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.20rem; }
  h3 { font-size: 1rem; }
  .hero h1 { font-size: 1.35rem; }
  .container { padding-left: 6px; padding-right: 6px; }
  .card, .testimonial-card, .feature-grid li, .service-list li, .values-grid li, .steps-timeline li {
    padding: 12px 8px;
  }
  .cta-block {
    padding: 21px 0;
  }
}
/* END CSS */
