/* ===================================
      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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: #f6faff;
  color: #1a2229;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}
a {
  color: #073a5e;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #a3bc58;
  outline: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
}


/* ===================================
      Typography
=================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #073a5e;
  line-height: 1.2;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
}
.subheadline {
  font-size: 1.25rem;
  color: #28517a;
  font-weight: 500;
  margin-bottom: 26px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}


/* ===================================
      Layout & Container
=================================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(7, 58, 94, 0.06);
}

@media (max-width: 992px) {
  .section {
    padding: 32px 6vw;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 7vw;
  }
}


/* ===================================
      Header & Navigation
=================================== */
header {
  width: 100%;
  background: #073a5e;
  color: #fff;
  box-shadow: 0 2px 8px rgba(7, 58, 94, 0.05);
  z-index: 800;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  gap: 24px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #f6faff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  transition: color 0.18s;
  padding: 8px 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #a3bc58;
  transition: width 0.18s;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #a3bc58;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 90%;
}
.cta-btn {
  padding: 14px 32px;
  background: #a3bc58;
  color: #fff;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 16px rgba(7, 58, 94, 0.06);
  margin-left: 16px;
  display: inline-block;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #8ba245;
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 6px 24px rgba(7, 58, 94, 0.18);
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    align-items: center;
    padding: 0 14px;
    margin-right: -6px;
    z-index: 920;
    transition: color 0.18s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    color: #a3bc58;
  }
}


/* ===================================
      Mobile Menu Overlay
=================================== */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 100vw;
  background: rgba(7, 58, 94, 0.98);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.36s cubic-bezier(.62, .03, .38, .92), background 0.19s;
  pointer-events: none;
}
.mobile-menu.open {
  inset: 0;
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu .mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  color: #fff;
  border: none;
  position: absolute;
  top: 22px;
  right: 32px;
  z-index: 1300;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu .mobile-menu-close:focus, 
.mobile-menu .mobile-menu-close:hover {
  color: #a3bc58;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 100px;
  width: 100%;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
  font-weight: 500;
  padding: 8px 0;
  width: 100%;
  transition: color 0.15s, background 0.18s;
  border-radius: 7px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #a3bc58;
  color: #073a5e !important;
  padding-left: 8px;
}

@media (min-width: 993px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none;
  }
}


/* ===================================
      Hero Section
=================================== */
.hero {
  width: 100%;
  background: linear-gradient(97deg, #f6faff 72%, #e8f1f9 100%);
  padding: 44px 0 32px 0;
  margin-bottom: 0;
  box-shadow: 0 1px 6px rgba(7, 58, 94, 0.04);
}
.hero .container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 340px;
  gap: 26px;
}
.hero h1 {
  margin-bottom: 10px;
  font-size: 2.25rem;
}
.hero .subheadline {
  color: #28517a;
  margin-bottom: 14px;
  font-size: 1.1rem;
}
@media (min-width: 600px) {
  .hero .container {
    min-height: 410px;
  }
  .hero h1 {
    font-size: 2.9rem;
  }
}


/* ===================================
      Features Grid / Services List
=================================== */
.features-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 12px 0 8px 0;
}
.feature, .service-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(7, 58, 94, 0.08);
  padding: 28px 22px;
  flex: 1 1 270px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  min-width: 220px;
  border: 1.5px solid #e0eaf6;
}
.feature img, .service-item img {
  width: 42px;
  height: 42px;
}
.feature:hover, .service-item:hover {
  box-shadow: 0 6px 28px rgba(7, 58, 94, 0.16);
  transform: translateY(-4px) scale(1.02);
  border-color: #a3bc58;
}
.service-price {
  color: #a3bc58;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .features-grid, .services-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature, .service-item {
    max-width: 100%;
  }
}


/* ===================================
      Info/Text Sections, Lists
=================================== */
.text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
   /* Required spacing for all text/image composite blocks */
}
.text-section ul {
  margin-bottom: 12px;
  margin-left: 15px;
}
.text-section li {
  font-size: 1rem;
  color: #23406b;
  padding-left: 18px;
  position: relative;
  margin-bottom: 11px;
}
.text-section li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #a3bc58;
  font-size: 1.1rem;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}


/* ===================================
      Process Steps / Stepper
=================================== */
.process-steps, .process-stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 12px;
  margin-top: 10px;
}
.step {
  background: #f6faff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(7, 58, 94, 0.07);
  padding: 22px 18px 18px 18px;
  flex: 1 1 200px;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border: 1.2px solid #e0eaf6;
  position: relative;
  margin-bottom: 18px;
  transition: box-shadow 0.21s, border 0.18s;
}
.step img {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
}
.step-number {
  background: #a3bc58;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.step:hover {
  border: 1.2px solid #073a5e;
  box-shadow: 0 2px 12px rgba(7, 58, 94, 0.13);
}
@media (max-width: 850px) {
  .process-steps, .process-stepper {
    flex-direction: column;
    gap: 16px;
  }
  .step {
    min-width: 0;
    width: 100%;
  }
}


/* ===================================
      Card Container/Grids/Testimonials
=================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(7, 58, 94, 0.07);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 230px;
  min-height: 150px;
  border: 1.1px solid #e0eaf6;
  transition: box-shadow 0.19s, border 0.17s;
}
.card:hover {
  border-color: #a3bc58;
  box-shadow: 0 5px 26px rgba(7, 58, 94, 0.15);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}


/* ===================================
      Testimonial Cards/Slider
=================================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f6faff;
  border-radius: 14px;
  box-shadow: 0 2px 20px rgba(7, 58, 94, 0.06);
  border: 1.3px solid #e0eaf6;
  flex: 1 1 280px;
  min-width: 210px;
  margin-bottom: 20px;
  position: relative;
  color: #185080;
  font-size: 1.06rem;
  font-style: italic;
  transition: box-shadow 0.2s, border 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 32px rgba(7, 58, 94, 0.14);
  border: 1.3px solid #a3bc58;
}
.testimonial-card .author {
  display: block;
  margin-left: auto;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 600;
  color: #073a5e;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
}


/* ===================================
      Feature Items (Column features)
=================================== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(7, 58, 94, 0.08);
  padding: 22px 18px;
  margin-bottom: 22px;
}


/* ===================================
      FAQ Accordion
=================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.faq-item {
  background: #f6faff;
  border-radius: 8px;
  padding: 18px 18px;
  border: 1.2px solid #e0eaf6;
  margin-bottom: 6px;
  transition: border 0.14s, box-shadow 0.17s;
}
.faq-item:hover, .faq-item:focus-within {
  border-color: #a3bc58;
  box-shadow: 0 3px 14px rgba(7, 58, 94, 0.09);
}


/* ===================================
      Pricing Table
=================================== */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  margin: 18px 0;
  font-size: 1rem;
  box-shadow: 0 1px 8px rgba(7, 58, 94, 0.05);
  border-radius: 10px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 14px;
  border-bottom: 1px solid #e0eaf6;
  text-align: left;
}
.pricing-table th {
  background: #f6faff;
  color: #073a5e;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table td:last-child {
  color: #a3bc58;
  font-weight: 700;
}
@media (max-width: 650px) {
  .pricing-table, .pricing-table thead, .pricing-table tbody, .pricing-table th, .pricing-table td, .pricing-table tr {
    display: block;
    width: 100%;
  }
  .pricing-table th, .pricing-table td {
    padding: 14px 8px;
    border-bottom: 1px solid #e0eaf6;
  }
}


/* ===================================
      Footer
=================================== */
footer {
  background: #185080;
  color: #fff;
  padding: 38px 0 24px 0;
  font-size: 1rem;
  margin-top: 42px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
footer .logo img {
  height: 36px;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #f6faff;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #a3bc58;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.98rem;
}
.contact-details a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}


/* ===================================
      Cookie Consent Banner & Modal
=================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #073a5e;
  color: #fff;
  box-shadow: 0 -3px 18px rgba(7, 58, 94, 0.16);
  z-index: 2000;
  padding: 22px 24px 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  animation: cookie-banner-in 0.39s cubic-bezier(.62, .03, .38, .92);
}
@keyframes cookie-banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.cookie-banner p {
  margin-right: 24px;
  color: #d5e7fb;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  padding: 11px 22px;
  border-radius: 22px;
  border: none;
  background: #a3bc58;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.18s, color 0.15s;
  margin-right: 0;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #8ba245;
}
.cookie-btn.secondary {
  background: #fff;
  color: #073a5e;
  border: 1.1px solid #a3bc58;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #f6faff;
  color: #073a5e;
  border-color: #8ba245;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 58, 94, 0.38);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #1a2229;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(7, 58, 94, 0.36);
  padding: 36px 26px 24px 26px;
  max-width: 440px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookie-modal-in 0.38s cubic-bezier(.62, .03, .38, .92);
}
@keyframes cookie-modal-in {
  from { transform: translateY(40px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1);     opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #073a5e;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover {
  color: #a3bc58;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.cookie-category label {
  cursor: pointer;
  font-weight: 500;
  color: #073a5e;
}
.cookie-category input[type="checkbox"] {
  accent-color: #a3bc58;
  width: 19px;
  height: 19px;
}
.cookie-category.essential label {
  color: #b9beaf;
  letter-spacing: 0.01em;
}
.cookie-category.essential input {
  display: none !important;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 6vw 18px 6vw;
  }
  .cookie-modal {
    padding: 22px 5vw 18px 5vw;
  }
}

/* Hide banner/modal when not needed */
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-modal-backdrop[hidden] {
  display: none !important;
}


/* ===================================
      Miscellaneous/Utility
=================================== */
::-webkit-scrollbar {
  width: 8px;
  background: #f6faff;
}
::-webkit-scrollbar-thumb {
  background: #e0eaf6;
  border-radius: 8px;
}

[tabindex]:focus {
  outline: 2px solid #a3bc58;
  outline-offset: 2px;
}

/* Validation/Status Colors */
input:focus, textarea:focus, select:focus {
  outline: 2px solid #a3bc58;
}


/* ===================================
      Spacing for All Cards & Sections
=================================== */
.card, .feature, .service-item, .testimonial-card, .step, .feature-item, .faq-item {
  margin-bottom: 20px !important;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .features-grid, .testimonial-slider, .content-grid, .process-steps, .process-stepper {
  gap: 24px !important;
  margin-bottom: 18px;
}


/* ===================================
      Responsive Fixes
=================================== */
@media (max-width: 700px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.21rem;
  }
  h3 {
    font-size: 1.07rem;
  }
  .section {
    padding: 20px 4vw;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 20px 0 12px 0;
  }
  .feature, .service-item, .testimonial-card, .step, .card, .feature-item {
    padding: 13px 7px;
  }
  .cta-btn, .cookie-btn, .cookie-btn.secondary {
    font-size: 0.97rem;
    padding: 10px 18px;
  }
}

/* End of CSS */
