/* --- CSS Reset & Normalize --- */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
*,*::before,*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img, picture { max-width: 100%; display: block; border: none; }
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
:focus {
  outline: 2px solid #234B6C;
  outline-offset: 2px;
}


/* --- Fonts --- */
body, html {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFF;
  color: #2d3540;
  font-size: 16px;
  line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #234B6C;
}
h1 { font-size: 2.25rem; margin-bottom: 24px; }
h2 { font-size: 1.5rem; margin-bottom: 20px; }
h3 { font-size: 1.2rem; margin-bottom: 12px; }
h4, h5, h6 { margin-bottom: 8px; }
p, ul, ol, li, dd {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 14px;
}
ul li, ol li { margin-bottom: 8px; }
strong, b { font-weight: 700; color: #234B6C; }

/* --- Container and Section Layouts --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(35,75,108,0.07);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* --- HERO & CTA --- */
.hero {
  background: #E9F0F6;
  border-radius: 0 0 32px 32px;
  padding-top: 40px;
  padding-bottom: 50px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-section {
  margin-bottom: 0;
  padding: 48px 20px;
  background: #FFF7F0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 2px 16px 0 rgba(255,203,148,0.13);
}


/* --- NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 20px 0 rgba(35,75,108,0.06);
  padding: 0 0 0 0;
  position: relative;
  z-index: 31;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 12px 0;
}
.main-nav img {
  height: 42px;
  margin-right: 18px;
  border-radius: 8px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 16px;
  color: #234B6C;
  border-radius: 22px;
  transition: background 0.2s;
  font-size: 1rem;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E9F0F6;
  color: #218271;
}
.cta-primary {
  background: #41AD99;
  color: #fff !important;
  border-radius: 22px;
  padding: 10px 24px;
  margin-left: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(65,173,153,0.13);
  transition: background .18s, box-shadow .18s;
  border: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #218271;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(65,173,153,0.18);
}
.cta-secondary {
  background: #E9F0F6;
  color: #234B6C;
  border-radius: 22px;
  padding: 10px 24px;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(35,75,108,0.07);
  transition: background .18s, color .18s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #41AD99;
  color: #fff;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 18px;
  background: #fff;
  color: #234B6C;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 60;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(35,75,108,0.10);
  border: 1px solid #E9F0F6;
  transition: box-shadow .15s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  box-shadow: 0 4px 18px 0 #41ad9966;
}

/* Hamburger only visible on mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(233,240,246,0.95);
  z-index: 1002;
  transform: translateX(-105vw);
  transition: transform 0.38s cubic-bezier(.61,1,.88,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow-y: auto;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 1px 0 40px 0 #234B6C33;
}
.mobile-menu-close {
  background: #fff;
  color: #234B6C;
  border-radius: 50%;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  display: flex;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 #234B6C22;
  z-index: 1004;
  border: 1px solid #E9F0F6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 80px;
  padding: 32px 32px 16px 32px;
}
.mobile-nav a {
  padding: 15px 0 15px 0;
  color: #234B6C;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  border-radius: 16px;
  width: 100%;
  font-weight: 600;
  transition: background .18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #41AD99;
  color: #fff;
}

/* Restore nav for desktop */
@media (min-width: 993px) {
  .mobile-menu,
  .mobile-menu.open,
  .mobile-menu-close,
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}


/* --- CARDS & FLEX CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 #e9f0f666;
  transition: box-shadow .17s, transform .13s;
  position: relative;
  padding: 28px 22px;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card:hover {
  box-shadow: 0 8px 28px 0 #234b6c21;
  transform: translateY(-2px) scale(1.025);
}
.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;
  margin-bottom: 48px;
}

/* --- Features Grid --- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.features-grid > div {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 2px 8px 0 #e9f0f644;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 180px;
  max-width: 240px;
  flex: 1 1 150px;
  transition: box-shadow .15s;
}
.features-grid > div img {
  height: 36px;
  width: auto;
}
.features-grid > div span, .features-grid > div h3 {
  font-size: 1.1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #234B6C;
}
.features-grid > div p, .features-grid > div span {
  color: #2d3540;
}
.features-grid > div:hover {
  box-shadow: 0 6px 20px 0 #234B6C23;
}

/* --- Feature Item --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- PRICING PLANS --- */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: center;
}
.pricing-plan {
  background: #fff;
  border-radius: 24px;
  border: 2px solid #E9F0F6;
  box-shadow: 0 2px 8px 0 #e9f0f644;
  padding: 36px 28px 32px 28px;
  flex: 1 1 260px;
  max-width: 315px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .17s, border .17s;
}
.pricing-plan h2 {
  color: #218271;
  font-size: 1.3rem;
}
.pricing-plan p strong {
  font-size: 1.6rem;
  color: #234b6c;
}
.pricing-plan ul {
  padding-left: 14px;
}
.pricing-plan li {
  margin-bottom: 8px;
  color: #2d3540;
}
.pricing-plan a {
  margin-top: 16px;
  width: 100%;
  text-align: center;
}
.pricing-plan.best {
  border-color: #41AD99;
  background: #E9F0F6;
  box-shadow: 0 8px 32px 0 #41ad9933;
  transform: scale(1.04);
}
.pricing-plan.best h2 {
  color: #234b6c;
}
.compare-plans {
  margin-top: 38px;
  background: #E9F0F6;
  border-radius: 18px;
  padding: 22px 18px;
  width: 100%;
  box-shadow: 0 2px 8px 0 #e9f0f633;
}
.compare-plans h3 {
  margin-bottom: 9px;
  color: #234B6C;
}
.compare-plans ul li {
  color: #234B6C;
  margin-bottom: 6px;
}

/* --- BLOG POSTS --- */
.blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  justify-content: flex-start;
}
.blog-post {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 #41ad9940;
  padding: 28px 22px 24px 22px;
  max-width: 335px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .13s;
}
.blog-post:hover {
  box-shadow: 0 6px 28px 0 #21827126;
  transform: translateY(-4px) scale(1.027);
}
.blog-post a {
  color: #218271;
  font-weight: 700;
  border-bottom: 1.5px solid #21827177;
  border-radius: 2px;
  transition: color .17s, border-color .17s;
}
.blog-post a:hover, .blog-post a:focus {
  color: #234b6c;
  border-color: #234b6c88;
}

/* --- TESTIMONIALS & REVIEWS --- */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 22px;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #FFF7F0;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 #e9f0f677;
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 340px;
  transition: box-shadow .13s, transform .13s;
  border: 1.5px solid #FFE7CD;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px 0 #21827133;
  transform: translateY(-2px) scale(1.022);
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #234b6c;
  font-weight: 500;
  margin-bottom: 6px;
  text-align: center;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #218271;
  font-weight: 600;
  text-align: center;
}
.testimonial-highlights, .client-logos {
  background: #E9F0F6;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px 0 #41ad9922;
}
.testimonial-highlights ul li, .client-logos span {
  color: #234B6C;
  font-weight: 500;
  margin-bottom: 7px;
}

/* --- FAQ --- */
.faq-list dt {
  font-size: 1.08rem;
  color: #234b6c;
  font-weight: 700;
  margin-top: 20px;
}
.faq-list dd {
  margin-left: 12px;
  margin-bottom: 16px;
  color: #218271;
}

/* --- CONTACT --- */
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 14px 0 18px 0;
}
.contact-info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.07rem;
  color: #234B6C;
}
.contact-info ul li img {
  width: 22px;
  height: 22px;
}
.contact-map {
  margin-top: 10px;
  background: #E9F0F6;
  border-radius: 12px;
  padding: 16px 16px;
  color: #2d3540;
  font-size: 1.04rem;
  box-shadow: 0 1px 4px 0 #234b6c17;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 10001;
  box-shadow: 0 -8px 26px 0 #234b6c22;
  background: #FFF7F0;
  padding: 24px 14px 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  border-radius: 28px 28px 0 0;
  animation: fadeInUpBanner 0.56s cubic-bezier(.61,1,.88,1);
  font-size: 1rem;
}
@keyframes fadeInUpBanner {
  from {opacity: 0; transform: translateY(80px);}
  to {opacity: 1; transform: translateY(0);}
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 24px;
  background: #E9F0F6;
  color: #234B6C;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 #e9f0f633;
  font-size: 1.09rem;
  transition: background .16s, color .16s;
}
.cookie-banner button.accept {
  background: #41AD99;
  color: #fff;
}
.cookie-banner button.accept:hover,
.cookie-banner button.accept:focus {
  background: #218271;
  color: #fff;
}
.cookie-banner button.reject {
  background: #FFE7CD;
  color: #234b6c;
}
.cookie-banner button.reject:hover,
.cookie-banner button.reject:focus {
  background: #ffddaf;
}
.cookie-banner button.settings {
  background: #E9F0F6;
  color: #234b6c;
}
.cookie-banner button.settings:hover,
.cookie-banner button.settings:focus {
  background: #41AD99;
  color: #fff;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 12000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,75,108,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalOverlay 0.22s cubic-bezier(.61,1,.88,1);
}
@keyframes fadeInModalOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 32px 0 #234b6c26;
  padding: 38px 26px;
  max-width: 500px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadeInModal 0.25s cubic-bezier(.61,1,.88,1);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.26rem;
  margin-bottom: 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-category label {
  font-size: 1.04rem;
  color: #234b6c;
}
.cookie-category input[type=checkbox] {
  accent-color: #41AD99;
  width: 20px; height: 20px;
  border-radius: 4px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-modal button {
  font-size: 1.08rem;
  border-radius: 22px;
  padding: 10px 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .14s, color .14s;
  background: #E9F0F6;
  color: #234b6c;
}
.cookie-modal button.accept {
  background: #41ad99;
  color: #fff;
}
.cookie-modal button.accept:hover {
  background: #218271;
}
.cookie-modal button.close-modal {
  background: #FFE7CD;
  color: #234b6c;
}
.cookie-modal button.close-modal:hover {
  background: #ddba7c;
}

/* --- FOOTER --- */
footer {
  background: #234B6C;
  color: #fff;
  padding: 0;
  border-radius: 24px 24px 0 0;
  margin-top: 48px;
}
footer .container {
  padding: 0 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin: 0;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #fff;
  font-size: 1.02rem;
  padding: 7px 14px;
  border-radius: 14px;
  transition: background .14s, color .14s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #41AD99;
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 15px 0;
}
.footer-contact img {
  height: 33px;
  margin-bottom: 6px;
  border-radius: 6px;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact li {
  color: #fff;
  font-size: 0.97rem;
}
.footer-contact a {
  color: #ffe7cd;
  transition: color .17s;
  border-bottom: 1px dashed #ffe7cd88;
}
.footer-contact a:hover,
.footer-contact a:focus {
  color: #41AD99;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  margin-bottom: 12px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  transition: filter .13s;
  filter: grayscale(0.28) brightness(1.14);
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: grayscale(0) brightness(1.28);
}
.footer-legal {
  font-size: 0.93rem;
  margin-top: 8px;
  color: #E9F0F6;
}

/* --- GENERAL BUTTONS & INTERACTIONS --- */
button, .button, .btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  background: #41AD99;
  color: #fff;
  transition: background .14s, color .14s, box-shadow .14s, transform .11s;
  box-shadow: 0 2px 9px 0 #2182711a;
}
button:hover, .btn:hover, .button:hover,
button:focus, .btn:focus, .button:focus {
  background: #218271;
  color: #fff;
  box-shadow: 0 6px 24px 0 #41ad993a;
  transform: scale(1.03);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
  .pricing-table, .features-grid, .blog-post-grid, .testimonial-slider, .testimonial-list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 910px) {
  .content-grid, .card-container {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 24px;
  }
  .features-grid {
    flex-direction: column;
    gap: 18px;
  }
  .pricing-table {
    flex-direction: column;
    gap: 18px;
  }
  .blog-post-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .section, .cta-section {
    padding: 26px 8px;
    border-radius: 16px;
    margin-bottom: 38px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.16rem; }
  .content-wrapper, .container {
    padding-left: 0; padding-right: 0; max-width: 100vw;
  }
  .main-nav, .footer-nav, .content-grid, .features-grid, .pricing-table, .blog-post-grid, .testimonial-list, .testimonial-slider {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .cta-primary, .cta-secondary {
    padding: 10px 18px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.08rem; }
  h2 { font-size: 1rem; }
  .card, .features-grid > div, .pricing-plan, .blog-post, .testimonial-card {
    min-width: unset;
    max-width: 100%;
  }
  .cookie-modal {
    padding: 16px 8px;
  }
}

/* --- MISC --- */
::-webkit-scrollbar {
  width: 10px;
  background: #e9f0f6;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #b8d0e4;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #41ad99cc;
}

/* --- UTILITIES & ACCENT BG's --- */
.bg-primary { background: #234B6C !important; color: #fff !important; }
.bg-accent { background: #41AD99 !important; color: #fff !important; }
.bg-secondary { background: #E9F0F6 !important; color: #234B6C !important; }
.rounded { border-radius: 24px !important; }
.shadow { box-shadow: 0 2px 16px 0 rgba(35,75,108,0.07); }

/* --- SELECTION COLOR --- */
::selection {
  background: #FFE7CD;
  color: #234B6C;
}

/* --- ACCESSIBILITY / VISIBILITY --- */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* --- END OF CSS --- */
