/* ===========================
   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;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body {
  background: #F9F9F9;
  color: #212529;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  min-height: 100vh;
  line-height: 1.5;
  font-size: 1rem;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #22577A;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #38A3A5;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
strong {
  font-weight: 700;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  margin-bottom: 24px;
  font-size: 1.12rem;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #22577A;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.32rem;
  line-height: 1.2;
  color: #38A3A5;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: #22577A;
}
p, li {
  font-size: 1.06rem;
  color: #222;
}

/* ===========================
   BUTTONS & LINKS
   =========================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #38A3A5;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 14px 28px;
  font-size: 1.1rem;
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 18px rgba(34,87,122,0.09);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  margin: 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #22577A;
  color: #fff;
  box-shadow: 0 6px 28px rgba(34,87,122,0.18);
  transform: translateY(-2px) scale(1.035);
}
button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  padding: 10px 24px;
  background: #22577A;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
button:hover, button:focus {
  background: #38A3A5;
  transform: scale(1.035);
  box-shadow: 0 4px 18px rgba(34,87,122,0.11);
}


/* ===========================
   HEADER & NAVIGATION
   =========================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 24px rgba(34,87,122,0.07);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 4px 4px;
  color: #22577A;
  letter-spacing: 0.01em;
  transition: color 0.18s;
  border-radius: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #38A3A5;
  background: #e4fafd;
}
.main-nav .cta-btn {
  margin-left: 12px;
}

/* ===================
   MOBILE NAVIGATION
   =================== */
.mobile-menu-toggle {
  background: #38A3A5;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  transition: background 0.13s, transform 0.1s;
  box-shadow: 0 2px 8px rgba(56,163,165,0.09);
  cursor: pointer;
  z-index: 1002;
}
.mobile-menu-toggle:active {
  background: #22577A;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.77,0.2,0.05,1.0);
  box-shadow: -6px 0 48px rgba(34,87,122,0.14);
  padding: 40px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 1102;
  background: #38A3A5;
  color: #fff;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  padding: 40px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #22577A;
  padding: 12px 0;
  width: 100%;
  border-radius: 4px;
  transition: background 0.12s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e4fafd;
  color: #38A3A5;
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

/* =======================
   HERO SECTION BOLD STYLE
   ======================= */
.hero {
  padding: 60px 0 40px 0;
  background: #38A3A5;
  color: #fff;
  box-shadow: 0 4px 30px rgba(34,87,122,0.14);
  min-height: 380px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  gap: 22px;
  max-width: 620px;
}
.hero h1 {
  color: #fff;
  font-size: 2.7rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-shadow: 0 4px 32px rgba(34,87,122,0.11);
}
.hero p {
  font-size: 1.23rem;
  color: #E2FCF9;
  margin-bottom: 10px;
}
.hero .cta-btn {
  background: #fff;
  color: #38A3A5;
  box-shadow: 0 2px 14px rgba(34,87,122,0.07);
}
.hero .cta-btn:hover,
.hero .cta-btn:focus {
  background: #22577A;
  color: #fff;
}

/* ===========================
   SECTIONS, CARDS, LISTS
   =========================== */
.section-features,
.section-services,
.section-testimonials,
.about-section,
.about-features,
.about-trust,
.services-section,
.features-section,
.faq-section,
.faq-main-section,
.contact-section,
.contact-features,
.pricing-section,
.pricing-features,
.legal-section,
.thankyou-section {
  background: #fff;
  border-radius: 32px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 4px 24px rgba(34,87,122,0.06);
}
.content-wrapper {
  margin: 0 auto;
}
ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
ul li {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 1.05rem;
  color: #212529;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 0;
}
ul li img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.section-features h2,
.section-services h2,
.section-testimonials h2 {
  color: #22577A;
  margin-bottom: 10px;
}

/* SECTION - Default spacing rules */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(34,87,122,0.10);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  padding: 24px 18px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px rgba(56,163,165,0.15);
  transform: translateY(-6px) 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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F9F9F9;
  color: #222;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(34,87,122,0.08);
  margin-bottom: 20px;
  font-size: 1.07rem;
  min-height: 105px;
}
.testimonial-card span {
  color: #22577A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-left: auto;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0 0 0;
}
.faq-item {
  background: #F9F9F9;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(56,163,165,0.07);
  padding: 24px 20px;
  margin-bottom: 12px;
}
.faq-item h3 {
  font-size: 1.18rem;
  color: #22577A;
  margin-bottom: 9px;
  font-weight: 800;
}

.faq-quick-links ul {
  flex-wrap: wrap;
  gap: 16px;
}
.faq-quick-links a {
  color: #38A3A5;
  background: #e4fafd;
  padding: 7px 14px;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.16s;
}
.faq-quick-links a:hover, .faq-quick-links a:focus {
  background: #38A3A5;
  color: #fff;
}


/* =============================
   PRICING TABLE
   ============================= */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0 28px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(56,163,165,0.07);
}
thead th {
  background: #22577A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 11px;
  border-bottom: 2px solid #38A3A5;
}
tbody td {
  background: #fff;
  padding: 15px 11px;
  color: #222;
  font-size: 1rem;
  border-bottom: 1px solid #e3e3e3;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* ===========================
   THANK YOU SECTION
   =========================== */
.thankyou-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* =======================
   FOOTER
   ======================= */
footer {
  background: #22577A;
  color: #fff;
  padding: 48px 0 24px 0;
  width: 100%;
  letter-spacing: 0.01em;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  width: 72px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #38A3A5;
  text-decoration: underline;
}
.footer-contact {
  color: #E2FCF9;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
}
.footer-contact a:hover,
.footer-contact a:focus {
  color: #38A3A5;
}


/* ====================
   COOKIE CONSENT BANNER
   ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #22577A;
  color: #fff;
  padding: 26px 32px 18px 32px;
  box-shadow: 0 -4px 22px rgba(34,87,122,0.19);
  z-index: 2001;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  justify-content: center;
  transition: transform 0.27s, opacity 0.11s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  flex: 1;
  font-size: 1.02rem;
  color: #fff;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.cookie-banner button {
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  padding: 9px 24px;
  background: #38A3A5;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, box-shadow 0.11s;
}
.cookie-banner button.settings {
  background: #fff;
  color: #22577A;
  border: 1px solid #38A3A5;
}
.cookie-banner button.accept:hover,
.cookie-banner button.accept:focus {
  background: #13c3c6;
  color: #fff;
}
.cookie-banner button.reject {
  background: #fff;
  color: #22577A;
  border: 1px solid #38A3A5;
}
.cookie-banner button.reject:hover,
.cookie-banner button.reject:focus {
  background: #ff5858;
  color: #fff;
  border: 1px solid #ff5858;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 2005;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 60px rgba(34,87,122,0.15);
  width: 94%;
  max-width: 420px;
  padding: 36px 32px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 1;
  transition: opacity 0.2s, transform 0.28s cubic-bezier(0.8,0,0.2,1);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-35%) scale(0.9);
}
.cookie-modal h2 {
  font-size: 1.28rem;
  margin-bottom: 16px;
  color: #22577A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-weight: 700;
  color: #22577A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: #38A3A5;
  border-radius: 4px;
}
.cookie-category input[disabled] + label {
  opacity: 0.65;
  font-style: italic;
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 11px;
  right: 13px;
  background: #38A3A5;
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 1.3rem;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 2010;
}

/* ======================
   MEDIA QUERIES
   ====================== */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 900px) {
  .footer .content-wrapper,
  .content-wrapper {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .footer-logo {
    margin-bottom: 12px;
  }
  .footer-contact {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  section, .section {
    padding: 28px 8px;
    margin-bottom: 32px;
  }
  .content-wrapper {
    gap: 20px;
    padding: 0;
  }
  .hero {
    min-height: 240px;
    padding: 36px 0 24px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .footer .content-wrapper{
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
  .hero .content-wrapper {
    max-width: 100%;
    padding: 0 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .card, .testimonial-card, .faq-item {
    padding: 14px 10px;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 10px 14px 10px;
  }
  .footer {
    padding: 36px 0 15px 0;
  }
  .cookie-modal {
    width: 98vw;
    max-width: 99vw;
    padding: 18px 7px 13px 7px;
  }
  .footer-logo img {
    width: 60px;
  }
}

/* ======================
   ELEVATION EFFECTS
   ====================== */
.card, .testimonial-card, .faq-item, .cookie-modal {
  transition: box-shadow 0.17s, transform 0.14s;
}
.card:hover, .testimonial-card:hover, .faq-item:hover, .cookie-modal:focus-within {
  box-shadow: 0 8px 40px rgba(56,163,165,0.14);
}

/* ======================
   MISCELLANEOUS UTILITIES
   ====================== */
::-webkit-scrollbar {
  width: 11px;
  background: #E3F6F5;
}
::-webkit-scrollbar-thumb {
  background: #38A3A5;
  border-radius: 12px;
}
::-webkit-selection {
  background: #38A3A5;
  color: #fff;
}
::selection {
  background: #38A3A5;
  color: #fff;
}

/* ==============
   FORM FIELDS
   ============== */
input, select, textarea {
  font-size: 1rem;
  padding: 8px 12px;
  border: 1.5px solid #E3F6F5;
  border-radius: 7px;
  background: #fff;
  transition: border 0.18s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #38A3A5;
  box-shadow: 0 2px 8px rgba(56,163,165,0.09);
}

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

/* =======================================
   ENFORCE SPACING, FLEXBOX ONLY LAYOUTS
   ======================================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}

/* ===========================
   ACCESSIBILITY FOCUS
   =========================== */
a:focus, button:focus, input:focus {
  outline: 2px solid #38A3A5;
  outline-offset: 1px;
}

/* ===========================
   ANIMATIONS FOR MICRO-INTERACTIONS
   =========================== */
.cta-btn, .card, .testimonial-card, .faq-item, .cookie-banner button {
  transition: background 0.21s, color 0.17s, box-shadow 0.15s, transform 0.13s;
}
.mobile-menu,
.cookie-banner,
.cookie-modal {
  will-change: transform, opacity;
}

/* ===========================
   Z-INDEX MANAGEMENT
   =========================== */
header {
  z-index: 200;
}
.mobile-menu {
  z-index: 1100;
}
.cookie-banner {
  z-index: 2001;
}
.cookie-modal {
  z-index: 2005;
}

/* =========================== */
