/* RESET & NORMALIZE */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: linear-gradient(135deg, #e0f7fa 0%, #f3f7fd 100%);
  font-family: "Roboto", Arial, sans-serif;
  color: #20425C;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}

/* VARIABLES (manually provide fallback) */
:root {
  --primary: #20425C;
  --secondary: #5ABFAF;
  --accent: #F3B43D;
  --background: #FAFDFF;
  --neutral: #ffffff;
  --text-dark: #20425C;
  --text-light: #ffffff;
  --shadow: 0 2px 12px 0 rgba(32,66,92,0.13);
  --radius: 18px;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

body {
  background: var(--background, #FAFDFF);
  min-height: 100vh;
  font-size: 16px;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

header {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: var(--shadow);
  position: relative;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 18px 0;
  position: relative;
}
.logo img {
  height: 42px;
  width: auto;
}
nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: 28px;
}
nav ul li a {
  font-size: 16px;
  color: var(--text-light);
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 500;
  transition: color var(--transition);
  padding: 6px 8px;
  border-radius: 8px;
}
nav ul li a:hover,
nav ul li a:focus {
  color: var(--accent);
  background: rgba(255,255,255,0.08);
}
.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(95deg, var(--secondary), var(--accent));
  color: var(--primary);
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  font-size: 18px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px 0 rgba(90,191,175,0.11);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  margin-left: 24px;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  color: var(--text-light);
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--accent);
  font-size: 2rem;
  border: none;
  padding: 8px 16px;
  margin-left: 18px;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
  z-index: 1021;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--secondary);
  transform: rotate(18deg) scale(1.17);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(112deg, var(--primary) 60%, var(--secondary) 100%);
  box-shadow: var(--shadow);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.87,-.41,.19,1.39);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: var(--accent);
  background: none;
  border: none;
  margin: 26px 30px 0 0;
  cursor: pointer;
  z-index: 2020;
  transition: color var(--transition), transform var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
  transform: scale(1.2);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 40px 32px 0 32px;
}
.mobile-nav a {
  font-size: 20px;
  color: var(--text-light);
  font-family: "Roboto Slab", serif;
  padding: 12px 0;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(255,255,255,0.08);
  color: var(--accent);
}

@media (max-width: 1020px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }
  nav ul {
    gap: 16px;
    margin-left: 10px;
  }
}
@media (max-width: 900px) {
  nav ul {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
/* Adaptive burger button for smaller screens */
@media (max-width: 600px) {
  header {
    padding-bottom: 0;
  }
  nav {
    padding: 14px 0;
  }
  .mobile-menu-close {
    margin: 18px 20px 0 0;
  }
  .mobile-nav {
    padding: 30px 20px 0 20px;
  }
}

main {
  width: 100%;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(102deg, var(--secondary) 40%, var(--neutral) 100%);
  color: var(--primary);
  padding: 58px 0 62px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 32px;
  max-width: 670px;
}
.hero h1 {
  font-size: 2.7rem;
  font-family: "Roboto Slab", serif;
  color: var(--primary);
  line-height: 1.14;
  font-weight: 800;
}
.hero p {
  font-size: 19px;
  color: var(--primary);
  opacity: 0.97;
  margin-bottom: 24px;
  margin-top: 10px;
}
.hero .cta-button {
  margin-left: 0;
}

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 700px) {
  section { margin-bottom: 36px; padding: 24px 6px; }
  .hero { padding: 36px 0 40px 0; }
}

/* Feature/Card/Section Layouts */
.feature-grid, .services .feature-grid, .values .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  align-items: stretch;
}
.feature-grid li {
  background: var(--neutral);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 222px;
  max-width: 320px;
  min-width: 208px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 30px 22px 26px 22px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 4px 20px 0 rgba(90,191,175,0.20);
  transform: translateY(-5px) scale(1.03);
}
.feature-grid li img {
  height: 44px; width: 44px;
  margin-bottom: 6px;
}
.feature-grid li h3 {
  font-family: "Roboto Slab", serif;
  font-size: 1.22rem;
  line-height: 1.22;
  color: var(--primary);
  margin-bottom: 3px;
  font-weight: 700;
}
.feature-grid li p {
  font-size: 15px;
  color: var(--primary);
  opacity: 0.93;
  font-family: "Roboto", sans-serif;
  margin-bottom: 0;
}
.feature-grid li .price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: auto;
  font-family: "Roboto Slab", serif;
}

@media (max-width: 1080px) {
  .feature-grid li { flex: 1 1 48%; max-width: 100%; }
  .feature-grid { gap: 16px; }
}
@media (max-width: 700px) {
  .feature-grid { flex-direction: column; gap: 18px; }
  .feature-grid li { min-width: 0; }
}

/* Step list in guide-overview (index) */
.step-list {
  display: flex;
  gap: 24px;
  margin-top: 22px;
  align-items: flex-start;
}
.step-list li {
  background: var(--neutral);
  border-radius: var(--radius);
  padding: 22px 16px;
  min-width: 172px;
  max-width: 250px;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  color: var(--primary);
  font-family: "Roboto", sans-serif;
  transition: box-shadow var(--transition), transform var(--transition);
}
.step-list li img {
  height: 38px;
  margin-bottom: 3px;
}
.step-list li span {
  display: block;
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
}
.step-list li:hover {
  box-shadow: 0 4px 18px 0 rgba(32,66,92,0.13);
  transform: translateY(-3px) scale(1.04);
}
@media (max-width: 900px) {
  .step-list { gap: 14px; }
  .step-list li { min-width: 120px; max-width: 100%; }
}
@media (max-width: 700px) {
  .step-list { flex-direction: column; gap: 13px; }
  .step-list li { min-width: 0; width: 100%; }
}

/* CTA Section */
.cta {
  background: linear-gradient(102deg, var(--secondary) 25%, var(--accent) 100%);
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 1px 11px 0 rgba(243,180,61,0.07);
  text-align: center;
}
.cta .content-wrapper { align-items: center; }
.cta h2 {
  font-family: "Roboto Slab", serif;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.cta p {
  font-size: 1.13rem;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
  color: #20425C;
}
.cta .cta-button {
  margin: 0 auto;
}

/* About Page & General Text-Sections */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--primary);
}
.text-section h2 {
  font-family: "Roboto Slab", serif;
  font-size: 1.3rem;
  color: var(--secondary);
  font-weight: 700;
  margin-top: 18px;
}
.text-section strong {
  color: var(--secondary);
  font-weight: 700;
}

/* Legal Pages */
.legal h1,
.legal h2 {
  color: var(--primary);
  font-family: "Roboto Slab", serif;
  margin-bottom: 10px;
}
.legal ul {
  list-style: disc inside;
  margin-bottom: 14px;
  margin-left: 18px;
  color: var(--primary);
}
.legal ul li {
  margin-bottom: 8px;
}

/* FAQ PAGE */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: var(--neutral);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.faq-accordion > div:hover {
  box-shadow: 0 4px 16px 0 rgba(32,66,92,0.12);
  transform: translateY(-2px) scale(1.01);
}
.faq-accordion h2 {
  font-size: 1.13rem;
  font-family: "Roboto Slab", serif;
  color: var(--primary);
  font-weight: 800;
}
.faq-accordion p {
  margin-top: 6px;
  color: var(--primary);
}
.contact-prompt {
  margin: 26px 0 0 0;
  font-size: 1rem;
  color: var(--primary);
}
.contact-prompt a {
  color: var(--secondary);
  text-decoration: underline;
  font-weight: 500;
  transition: color var(--transition);
}
.contact-prompt a:hover { color: var(--accent); }

/* Testimonials */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: var(--neutral);
  box-shadow: var(--shadow);
  max-width: 700px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px 0 rgba(90,191,175,0.16);
  transform: translateY(-4px) scale(1.01);
}
.testimonial-card .text-section {
  color: var(--text-dark);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  gap: 10px;
}
.testimonial-card strong {
  color: var(--primary);
  font-weight: bold;
  font-family: "Roboto Slab", serif;
}
.testimonial-card span {
  color: var(--accent);
  margin-left: 7px;
  letter-spacing: 1px;
  font-size: 1.15em;
}
@media (max-width: 700px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; }
}

/* Contact Page */
.contact-info p {
  margin-bottom: 8px;
  color: var(--primary);
}
.map-embed {
  margin-top: 8px;
  background: #f7fafb;
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--primary);
  font-size: 0.97rem;
}

/* Thank You page */
.thank_you {
  background: linear-gradient(100deg, var(--secondary) 20%, #d0f2f0 90%);
  border-radius: var(--radius);
  text-align: center;
}
.thank_you h1 { font-size: 2rem; font-family: "Roboto Slab", serif; font-weight: 800; margin-bottom: 13px; }
.followup-info { margin-top: 22px; color: var(--primary); font-size: 1rem; }

/* Footer */
footer {
  background: var(--primary);
  color: var(--text-light);
  padding: 32px 0 18px 0;
  box-shadow: 0 -1px 12px 0 rgba(32,66,92,0.06);
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img { height: 40px; width: auto; }
.footer-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 1rem;
  color: var(--accent);
  font-family: "Roboto", Arial, sans-serif;
}
.footer-menu a {
  color: var(--accent);
  font-size: 1rem;
  transition: color var(--transition);
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--secondary);
}
.footer-contact {
  color: #d8e2eb;
  font-size: 0.99rem;
}
.footer-contact p{
  color: #d8e2eb;
  font-size: 0.99rem;
}
.footer-contact strong {
  color: var(--accent);
  font-family: "Roboto Slab", serif;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.footer-social a img {
  width: 28px;
  filter: grayscale(60%) brightness(1.04);
  transition: filter var(--transition), transform var(--transition);
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: grayscale(0%) brightness(1.2);
  transform: scale(1.13);
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-menu { flex-wrap: wrap; gap: 8px; }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 24px 20px 18px 20px;
  background: linear-gradient(90deg, var(--primary) 60%, var(--secondary) 100%);
  color: var(--text-light);
  z-index: 5000;
  box-shadow: 0 -3px 12px 0 rgba(32,66,92,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: transform 0.36s cubic-bezier(.77,-0.21,.22,1.29);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  color: var(--text-light);
  font-family: "Roboto", sans-serif;
  max-width: 650px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  padding: 9px 22px;
  border-radius: 9px;
  border: none;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin: 0;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--accent);
  color: var(--primary);
}
.cookie-reject {
  background: #eee;
  color: var(--primary);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #dedede;
  color: var(--accent);
}
.cookie-settings-btn {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  font-family: "Roboto Slab", serif;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus { background: var(--accent); color: var(--primary); }

@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 10px 14px 10px;
  }
  .cookie-banner .cookie-actions { width: 100%; gap: 10px; }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 6000;
  inset: 0;
  background: rgba(32,66,92,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: var(--neutral);
  border-radius: 14px;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 4px 36px 0 rgba(90,191,175,0.17);
  min-width: 290px;
  max-width: 98vw;
  font-family: "Roboto", sans-serif;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  font-family: "Roboto Slab", serif;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1.08rem;
  font-family: "Roboto", sans-serif;
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--secondary);
}
.cookie-category .cookie-lock {
  color: #bbb;
  font-size: 1.1rem;
  margin-left: 4px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 13px;
}
.cookie-modal button {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}
.cookie-modal .cookie-accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal .cookie-reject {
  background: #eee;
  color: var(--primary);
}
.cookie-modal .cookie-close-btn {
  background: none;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: bold;
  margin-left: auto;
  margin-bottom: -30px;
  margin-top: -32px;
  margin-right: -16px;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.cookie-modal .cookie-close-btn:hover { color: var(--accent); }

@media (max-width: 480px) {
  .cookie-modal { min-width: 0; padding: 18px 7vw 16px 7vw; }
  .cookie-modal-overlay { align-items: flex-end; }
}

/* Responsive Styles for Content */
@media (max-width: 768px) {
  .content-wrapper {
    gap: 16px;
  }
  .hero h1, section h1 {
    font-size: 1.7rem;
  }
  .cta h2 {
    font-size: 1.3rem;
  }
  .hero {
    padding: 26px 0 30px 0;
  }
}

/* General Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-family: "Roboto Slab", serif;
  font-weight: 800;
  letter-spacing: -0.012em;
}
h1 { font-size: 2.3rem; margin-bottom: 15px; }
h2 { font-size: 1.42rem; margin-bottom: 13px; }
h3 { font-size: 1.18rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p, li, ul, ol {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: var(--primary);
  line-height: 1.7;
}

ol li, ul li {
  margin-bottom: 8px;
  padding-left: 0;
}

/* Utility Classes for Spacing Patterns (MANDATORY) */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--neutral); }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Responsive Flex Direction for text-image-sections */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/* Transitions/Micro-interactions */
a, button, .cta-button, .mobile-nav a, .feature-grid li, .step-list li {
  transition: background 0.22s cubic-bezier(.4,0,.2,1),
              color 0.22s cubic-bezier(.4,0,.2,1),
              box-shadow 0.22s cubic-bezier(.4,0,.2,1),
              transform 0.22s cubic-bezier(.4,0,.2,1);
}

/* Accessibility: focus outlines */
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Scrollbar Styling for Modern Browsers */
body::-webkit-scrollbar {
  width: 9px;
  background: #eee;
}
body::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}

/* Hide visually but accessible */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
