/* =============================
   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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth; 
}
body {
  background: #F8F8FA;
  color: #24516B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
ul, ol {
  margin-left: 24px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #24516B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #47A68F;
  outline-offset: 2px;
}
/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #24516B;
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #334e61;
}
strong {
  font-weight: 600;
  color: #24516B;
}
.tagline {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.125rem;
  margin-bottom: 24px;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(36,81,107,0.08), 0 0.5px 1.5px rgba(71,166,143,0.06);
  padding: 32px 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(36,81,107,0.07);
  padding: 16px 20px;
  min-width: 220px;
}

/*****************************
 * Header & Navigation
 *****************************/
header {
  width: 100%;
  background: linear-gradient(90deg, #24516B 0%, #47A68F 100%);
  color: #fff;
  box-shadow: 0 2px 12px rgba(36,81,107,0.09);
  padding: 0;
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  height: 54px;
}
.logo img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.20s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: rgba(36,81,107,0.20);
  color: #fff;
}
.cta-btn {
  background: linear-gradient(90deg,#47A68F, #24516B);
  color: #fff;
  border-radius: 24px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 30px;
  box-shadow: 0 2px 8px rgba(36,81,107,0.10);
  border: none;
  cursor: pointer;
  transition: background 0.28s, box-shadow 0.18s;
  outline: none;
  margin-left: 18px;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(90deg,#24516B,#47A68F);
  color: #fff;
  box-shadow: 0 4px 14px rgba(36,81,107,0.15);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 10px;
  margin-left: 14px;
  border-radius: 10px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: rgba(71,166,143, 0.10);
}

/*****************************
 * Mobile Menu
 *****************************/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #24516B;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 36px 24px 24px 24px;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.7,0,.2,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  cursor: pointer;
  margin-bottom: 18px;
  border-radius: 6px;
  padding: 8px 12px;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(71,166,143,0.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 12px 10px;
  border-radius: 6px;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #47A68F;
  color: #fff;
}
@media (max-width: 959px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: auto;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 960px) {
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/*************************
 * Hero Section
 *************************/
.hero {
  min-height: 55vh;
  background: linear-gradient(100deg, #24516B 20%, #47A68F 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 60px 0;
}
.hero .container {
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  font-size: 2.6rem;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-shadow: 0 4px 12px rgba(36,81,107,0.07);
}
.hero .tagline {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 30px;
}
.hero .cta-btn {
  font-size: 1.16rem;
  padding: 16px 38px;
  background: #47A68F;
  background: linear-gradient(90deg,#47A68F, #24516B);
}
.hero .cta-btn:hover,
.hero .cta-btn:focus {
  background: linear-gradient(90deg, #24516B, #47A68F);
}

/*************************
 * Features, Benefits Grids
 *************************/
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.features h2 {
  color: #24516B;
  font-size: 2rem;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  list-style: none;
}
.feature-grid li {
  display: flex;
  align-items: center;
  background: #F8F8FA;
  border-radius: 13px;
  padding: 18px 24px;
  box-shadow: 0 2px 8px rgba(36,81,107,0.03);
  font-size: 1.05rem;
  gap: 16px;
  min-width: 220px;
  color: #24516B;
}
.feature-grid img {
  width: 32px;
  height: 32px;
  margin-right: 6px;
}
.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 11px;
  padding: 16px 20px;
  color: #24516B;
  box-shadow: 0 2px 6px rgba(36,81,107,0.07);
  font-size: 1.05rem;
}
.benefit-list img {
  width: 28px;
  height: 28px;
}

/***********************
 * Card/Grid Patterns
 ***********************/
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(36,81,107,0.08);
  padding: 28px 22px;
  margin-bottom: 20px;
}
/***********************
* Process Steps/FAQ/Lists
***********************/
.process ol,
.faq-list ul,
.benefits ul,
.faq-preview ul,
.certifications ul,
.team ul,
.services ul,
.service-list ul,
.contact-details,
.privacy-policy ul,
.cookie-policy ul,
.terms-of-service ul,
.text-section ul {
  margin: 0 0 20px 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.process ol {
  list-style: decimal inside;
}
/****************************
* Testimonials
****************************/
.testimonials {
  background: linear-gradient(100deg,#F8F8FA 20%, #d4edec 100%);
  padding: 48px 20px;
}
.testimonials h2 {
  color: #24516B;
  font-size: 2rem;
  margin-bottom: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  color: #1c2a38;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(36,81,107,0.08);
  padding: 20px 24px;
  margin-bottom: 22px;
  gap: 12px;
  min-width: 220px;
  transition: box-shadow 0.19s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(71,166,143,0.08), 0 2px 5px rgba(36,81,107,0.11);
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #24516B;
  margin-bottom: 8px;
  line-height: 1.5;
}
.testimonial-card div {
  color: #47A68F;
  font-weight: 600;
  font-size: 0.98rem;
}
.ratings-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #24516B;
  margin-top: 12px;
}
.ratings-summary img {
  width: 22px;
  height: 22px;
}

/****************************
* Pricing Table
****************************/
.pricing-table {
  width: 100%;
  margin-bottom: 24px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(36,81,107,0.06);
}
.pricing-table th,
.pricing-table td {
  padding: 16px 18px;
  text-align: left;
}
.pricing-table th {
  background: #F8F8FA;
  color: #24516B;
  font-size: 1.08rem;
  font-weight: 700;
}
.pricing-table td {
  border-bottom: 1px solid #e8ecef;
  color: #265673;
  font-size: 1rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/****************************
* Blog
****************************/
.blog-list article {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(36,81,107,0.08);
  padding: 28px 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.21s;
}
.blog-list article h2 {
  font-size: 1.35rem;
  color: #24516B;
}
.blog-list article a {
  color: #47A68F;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.16s;
}
.blog-list article a:hover {
  color: #24516B;
  text-decoration: underline;
}

/****************************
* Newsletter
****************************/
.newsletter-signup {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(71,166,143,0.06);
  padding: 38px 22px;
  margin-bottom: 28px;
}

/****************************
 * Contact Details
****************************/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin-bottom: 18px;
  margin-left: 0;
  color: #24516B;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #24516B;
}
.contact-details img {
  width: 22px;
  height: 22px;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #F8F8FA;
  border-radius: 13px;
  padding: 16px 20px;
  margin-top: 14px;
}

/****************************
* Footer
****************************/
footer {
  background: linear-gradient(90deg, #24516B 0%, #47A68F 100%);
  color: #fff;
  padding: 52px 0 0 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  gap: 24px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a, .footer-legal a {
  color: #fff;
  opacity: 0.85;
  font-weight: 500;
  font-size: 1rem;
  transition: opacity 0.24s;
}
.footer-nav a:hover, .footer-legal a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin-left: 0;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1rem;
}
.footer-contact img {
  width: 20px;
  height: 20px;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}
.footer-social a img {
  width: 26px;
  height: 26px;
  transition: filter 0.2s;
  filter: grayscale(1) brightness(1.5);
}
.footer-social a:hover img {
  filter: grayscale(0) brightness(1);
}
.footer-meta {
  margin-top: 12px;
  color: #F8F8FA;
  opacity: 0.87;
  font-size: 0.96rem;
  padding-bottom: 24px;
}

/******* CTA Section ********/
.cta {
  margin-bottom: 48px;
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(36,81,107,0.08);
}
.cta .cta-btn {
  margin-top: 18px;
}
.cta a {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #47A68F;
  font-weight: 500;
}

/******* Thank You Section ********/
.thank-you {
  background: #F8F8FA;
  padding: 60px 20px;
}
.thank-you h1 {
  color: #47A68F;
  font-size: 2rem;
}
.thank-you .cta-btn {
  margin-top: 24px;
}

/******** Legal, Policy & Info Pages ************/
.privacy-policy, .cookie-policy, .terms-of-service, .gdpr-compliance {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(36,81,107,0.07);
  padding: 40px 18px;
}
.privacy-policy h1, .cookie-policy h1, .terms-of-service h1, .gdpr-compliance h1 {
  font-size: 2rem;
}
.privacy-policy .text-section, .cookie-policy .text-section, .terms-of-service .text-section, .gdpr-compliance .text-section {
  margin-top: 8px;
}

/****************************
* Cookie Consent Banner
****************************/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #24516B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 24px;
  z-index: 11000;
  box-shadow: 0 -2px 14px rgba(36,81,107,0.13);
  font-size: 1rem;
  flex-direction: row;
  gap: 30px;
  transition: transform 0.35s cubic-bezier(.6,0,.3,1);
}
.cookie-consent-banner.hide {
  transform: translateY(110%);
}
.cookie-consent-banner .cookie-message {
  flex: 1 1 0;
  margin-right: 20px;
  color: #fff;
}
.cookie-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  background: #47A68F;
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin: 0;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.13s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #369379;
  box-shadow: 0 2px 9px rgba(36,81,107,0.13);
}
.cookie-btn.cookie-settings {
  background: #fff;
  color: #24516B;
  border: 1px solid #47A68F;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #F8F8FA;
  color: #24516B;
}
/**** Cookie Modal ****/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(36, 81, 107, 0.60);
  z-index: 12000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #24516B;
  border-radius: 14px;
  box-shadow: 0 4px 22px rgba(36,81,107,0.17);
  padding: 32px 22px 26px 22px;
  min-width: 320px;
  max-width: 95vw;
  width: 440px;
}
.cookie-modal h2 {
  margin-bottom: 17px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 13px 0;
  border-bottom: 1px solid #e8ecef;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-category-label {
  font-weight: 600;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 12px;
  background: #d3e8e4;
  position: relative;
  outline: none;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #47A68F;
}
.cookie-toggle::before {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(36,81,107,0.04);
  transition: transform 0.19s;
}
.cookie-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 26px;
}
.cookie-modal .cookie-btn {
  min-width: 100px;
}
.cookie-modal .cookie-btn.cookie-cancel {
  background: #e5eceb;
  color: #24516B;
}
.cookie-modal .cookie-btn.cookie-cancel:hover {
  background: #d3e8e4;
  color: #24516B;
}

/****************************
* Responsive Design – Mobile First
****************************/
@media (max-width: 1159px) {
  .container {
    max-width: 990px;
  }
  .feature-grid,
  .benefit-list {
    gap: 18px;
  }
}
@media (max-width: 959px) {
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  .footer-nav, .footer-legal {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
    max-width: 100vw;
  }
  .section, .hero,.testimonials,.newsletter-signup,.privacy-policy,.cookie-policy,.team,.certifications {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .features h2, .testimonials h2 {
    font-size: 1.38rem;
  }
  .feature-grid, .benefit-list {
    flex-direction: column;
    gap: 12px;
  }
  .card-container,.content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    padding: 14px 10px;
  }
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
  .footer-meta {
    margin-top: 6px;
    padding-bottom: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .map-embed {
    flex-direction: column;
    gap: 10px;
    padding: 12px 10px;
  }
  .footer-social {
    margin-bottom: 10px;
    gap: 9px;
  }
}
@media (max-width:450px) {
  .pricing-table th,
  .pricing-table td {
    padding: 10px 6px;
    font-size: 0.95rem;
  }
  .cookie-modal {
    min-width: 0;
    padding: 18px 7px 10px 7px;
    width: 99vw;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 13px;
    padding: 13px 7px;
    font-size: 0.95rem;
  }
}
/*************************
 * Hover, Focus, Micro-interaction
 *************************/
.cta-btn, .cookie-btn {
  transition: background 0.21s, color 0.18s, box-shadow 0.22s, border 0.19s;
}
.card, .feature-item, .testimonial-card, .blog-list article, .newsletter-signup {
  transition: box-shadow 0.19s, transform 0.17s;
  will-change: box-shadow, transform;
}
.card:hover, .feature-item:hover, .testimonial-card:hover, .blog-list article:hover, .newsletter-signup:hover {
  box-shadow: 0 6px 28px rgba(36,81,107,0.11), 0 2px 7px rgba(71,166,143,0.07);
  transform: translateY(-3px) scale(1.025);
}
.cta-btn:active,
.cookie-btn:active {
  transform: scale(0.96);
}
footer a:focus-visible,
.main-nav a:focus-visible,
.mobile-nav a:focus-visible {
  outline: 2px solid #47A68F;
  outline-offset: 2px;
  background: #e3f9f3;
  color: #24516B;
}

/*********************************
   Hide Elements Utility
**********************************/
.d-none {
  display: none !important;
  visibility: hidden !important;
}

/*********************************
   Accessibility
**********************************/
[tabindex]:focus {
  outline: 2px solid #47A68F;
  outline-offset: 2px;
}

/*********************************
   Miscellaneous
**********************************/
::-webkit-scrollbar {
  width: 10px;
  background: #eaf5f1;
}
::-webkit-scrollbar-thumb {
  background: #47A68F55;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #47A68F;
}
