/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F4F6F8;
  color: #223259;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #223259;
  text-decoration: none;
  transition: color 0.2s linear;
}
a:focus {
  outline: 2px solid #60B39A;
  outline-offset: 2px;
}

/* GEOMETRIC STRUCTURED TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #223259;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.14;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  margin-top: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}
h4, h5, h6 {
  font-size: 1rem;
}
strong {
  font-weight: 700;
}
blockquote {
  font-style: italic;
  color: #223259;
  background: #F4F6F8;
  border-left: 4px solid #60B39A;
  padding: 18px 24px;
  border-radius: 12px;
  margin-bottom: 8px;
}

/* CONTAINER STRUCTURE */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.text-section {
  max-width: 780px;
}

/* FLEXBOX CARD/GRID PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(34,50,89,0.08);
  border: 1.5px solid #E4EBF2;
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-width: 280px;
  flex: 1 1 250px;
  transition: box-shadow 0.25s, border 0.25s;
}
.card:hover {
  box-shadow: 0 4px 32px 0 rgba(34, 50, 89, 0.18);
  border: 1.5px solid #60B39A;
  z-index: 1;
}
.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 LISTS */
.feature-grid,
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li,
.benefit-grid li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(34,50,89,0.07);
  border: 1.5px solid #E4EBF2;
  padding: 28px 18px 18px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.24s, border 0.24s;
}
.feature-grid li:hover {
  border-color: #60B39A;
  box-shadow: 0 8px 32px 0 rgba(34,50,89,0.13);
}
.feature-grid img,
.benefit-grid img {
  width: 46px;
  height: 46px;
  background: #60B39A11;
  border-radius: 8px;
}

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

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(34,50,89,0.07);
  border: 1.5px solid #E4EBF2;
  transition: box-shadow 0.25s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px 0 rgba(34,50,89,0.15);
}
.testimonial-card blockquote {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #223259;
}
.testimonial-card p {
  font-size: 1rem;
  font-weight: 700;
  color: #60B39A;
}

/* CTA BUTTON STYLES */
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #223259;
  color: #fff;
  border: none;
  border-radius: 44px;
  padding: 13px 36px;
  font-size: 1rem;
  line-height: 1.2;
  margin-top: 18px;
  cursor: pointer;
  box-shadow: 0 1px 12px 0 rgba(34,50,89,0.10);
  transition: background 0.24s, transform 0.12s, box-shadow 0.18s;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #60B39A;
  color: #223259;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 14px 0 rgba(34,50,89,0.18);
}

/* HEADER & NAV */
header {
  background: #fff;
  border-bottom: 2.5px solid #E4EBF2;
  box-shadow: 0 2px 10px 0 rgba(34,50,89,0.04);
  padding-top: 12px;
  padding-bottom: 12px;
  z-index: 10;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
header img {
  max-height: 48px;
  margin-right: 18px;
  flex-shrink: 0;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  padding: 6px 2px;
  border-bottom: 2.5px solid transparent;
  transition: color 0.15s, border-bottom-color 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #60B39A;
  border-bottom: 2.5px solid #60B39A;
}

.mobile-menu-toggle {
  background: #223259;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  display: none;
  transition: background 0.2s, color 0.2s, transform 0.14s;
  z-index: 31;
  margin-left: 8px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #60B39A;
  color: #223259;
  transform: scale(1.08);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #223259ee;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.83,.01,.25,1);
  z-index: 50;
  display: flex;
  flex-direction: column;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  font-size: 2.6rem;
  border: none;
  padding: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.2s, transform 0.13s;
  z-index: 52;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #60B39A;
  transform: rotate(90deg) scale(1.12);
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 48px 32px 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 2px solid #60B39A22;
  border-radius: 0;
  transition: color 0.2s, padding 0.13s, background 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #60B39A;
  background: #fff2;
  padding-left: 8px;
}

/* Hide main nav & show burger on mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 2.5px solid #E4EBF2;
  margin-top: 84px;
  padding: 40px 0 16px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #223259;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.14s;
}
.footer-nav a:hover {
  color: #60B39A;
}
.footer-info {
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer-info img {
  width: 38px;
  height: 38px;
}

/* BLOG SECTION */
.search-bar {
  display: inline-block;
  width: 100%;
  max-width: 380px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 12px;
  border: 1.5px solid #E4EBF2;
  padding: 10px 16px;
  margin-bottom: 18px;
  transition: border 0.17s, box-shadow 0.17s;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(34,50,89,0.03);
}
.search-bar:focus {
  border: 1.5px solid #60B39A;
  box-shadow: 0 2px 16px 0 #60B39A44;
  outline: none;
}
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.categories span {
  background: #e8ecef;
  color: #223259;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.94rem;
  padding: 7px 16px;
  border-radius: 24px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.blog-post-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 10px;
}
.blog-post-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 7px 0 rgba(34,50,89,0.07);
  border: 1.5px solid #E4EBF2;
  padding: 24px 18px;
  transition: box-shadow 0.20s, border 0.18s;
}
.blog-post-list li:hover {
  border-color: #60B39A;
  box-shadow: 0 4px 18px 0 rgba(34,50,89,0.13);
}
.blog-post-list h3 {
  font-size: 1.13rem;
  margin-bottom: 8px;
}

/* SERVICES/PRICING TABLE */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(34,50,89,0.09);
  border: 1.5px solid #E4EBF2;
  padding: 26px 18px 18px 18px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, border 0.14s;
}
.service-list li strong {
  color: #223259;
}
.service-list li:hover {
  box-shadow: 0 6px 20px 0 rgba(34,50,89,0.12);
  border-color: #60B39A;
}
.service-list img {
  width: 44px;
  height: 44px;
}
.pricing-snippet {
  background: #E4EBF2;
  border-radius: 9px;
  font-size: 1.04rem;
  padding: 14px 26px;
  color: #223259;
  margin: 12px 0;
}

.pricing-grid {
  width: 100%;
  margin: 18px 0 20px 0;
  border-collapse: separate;
  border-spacing: 0 18px;
}
.pricing-grid th, .pricing-grid td {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 28px 12px 0;
  text-align: left;
  font-size: 1.03rem;
}
.pricing-grid th {
  color: #60B39A;
  font-size: 1.08rem;
  border-bottom: 2px solid #E4EBF2;
  text-transform: uppercase;
}
.pricing-grid td {
  background: #fff;
  color: #223259;
  border-radius: 8px;
  border: 1px solid #E4EBF2;
}

/* QUESTIONS/FAQ */
.contact-details {
  background: #fff;
  border: 1.5px solid #E4EBF2;
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 6px;
  margin-bottom: 16px;
  box-shadow: 0 1px 7px 0 rgba(34,50,89,0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details a {
  color: #60B39A;
}

/* FAQ */
ul > li > strong {
  font-size: 1.03rem;
  color: #223259;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
  display: block;
}
ul > li > p {
  color: #223259;
  font-size: 1rem;
  margin-bottom: 7px;
}

ol {
  list-style: decimal inside none;
  margin-left: 14px;
  margin-bottom: 10px;
}
ol > li {
  margin-bottom: 10px;
  font-weight: 600;
}

/* GLOBAL BUTTON RESET */
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

/* GEOMETRIC ACCENTS */
h1, h2, h3, h4 {
  position: relative;
}
h2:before {
  content: '';
  display: block;
  width: 44px;
  height: 7px;
  background: #60B39A;
  border-radius: 0 0 12px 12px;
  margin-bottom: 12px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 740px;
  }
  .card,
  .feature-grid li,
  .benefit-grid li,
  .service-list li {
    min-width: 170px;
    flex: 1 1 170px;
    padding: 18px 12px 12px 12px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.27rem; }
  .section {
    margin-bottom: 32px;
    padding: 18px 6px;
  }
  .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .feature-grid,
  .benefit-grid,
  .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 9px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  .footer-info {
    flex-direction: column;
    gap: 8px;
  }
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/* -- COOKIE BANNER -- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #223259;
  color: #fff;
  padding: 26px 22px 22px 22px;
  box-shadow: 0 -2px 16px 0 rgba(34,50,89,0.17);
  gap: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  transform: translateY(120%);
  transition: transform 0.26s, opacity 0.18s;
  opacity: 1;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(60px);
  pointer-events: none;
}
.cookie-banner p {
  flex: 1 1 auto;
  margin-right: 30px;
  color: #fff;
  font-size: 0.99rem;
}
.cookie-banner .cookie-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  background: #60B39A;
  color: #223259;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 22px;
  border: none;
  padding: 9px 18px;
  font-size: 1rem;
  transition: background 0.18s, color 0.17s, box-shadow 0.12s;
}
.cookie-btn:focus,
.cookie-btn:hover {
  background: #fff;
  color: #60B39A;
  outline: none;
  box-shadow: 0 2px 8px 0 #60B39A22;
}
.cookie-btn.secondary {
  background: #fff;
  color: #223259;
  border: 1.5px solid #60B39A;
}
.cookie-btn.secondary:focus,
.cookie-btn.secondary:hover {
  background: #60B39A;
  color: #fff;
  border: 1.5px solid #223259;
}

/* -- COOKIE MODAL -- */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: #223259BB;
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%) translateY(120px);
  min-width: 335px;
  width: 94vw;
  max-width: 430px;
  background: #fff;
  color: #223259;
  border-radius: 22px;
  box-shadow: 0 3px 40px 0 rgba(34,50,89,0.19);
  z-index: 1003;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 34px 28px 22px 28px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s cubic-bezier(.77,0,.18,.91), opacity 0.22s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cookie-modal h3 {
  color: #223259;
  margin-bottom: 12px;
  font-size: 1.17rem;
  text-transform: uppercase;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal ul {
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  padding: 9px 0;
  border-bottom: 1px solid #E4EBF2;
}
.cookie-modal li:last-child {
  border-bottom: none;
}
.cookie-category-label {
  font-size: 0.98rem;
  color: #223259;
  font-weight: 600;
}
.cookie-category-toggle {
  width: 34px;
  height: 19px;
  border-radius: 19px;
  background: #E4EBF2;
  position: relative;
  transition: background 0.17s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border: none;
}
.cookie-category-toggle.active {
  background: #60B39A;
}
.cookie-category-toggle:before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 1px; top: 1px;
  transition: left 0.17s;
}
.cookie-category-toggle.active:before {
  left: 16px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal-close {
  background: none;
  color: #60B39A;
  font-size: 2.2rem;
  border: none;
  position: absolute;
  top: 12px;
  right: 14px;
  cursor: pointer;
  transition: color 0.20s, transform 0.13s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #223259;
  transform: rotate(90deg);
}

/* GEOMETRIC DECORATIONS (OPTIONAL, PURE CSS SHAPES) */
.geometric-shape {
  display: inline-block;
  width: 44px;
  height: 44px;
  background: #60B39A22;
  border-radius: 6px;
  clip-path: polygon(25% 6%, 75% 6%, 94% 50%, 75% 94%, 25% 94%, 6% 50%);
}

/* ACCESSIBILITY & USABILITY FOCUS */
:focus {
  outline: 2px solid #60B39A;
  outline-offset: 1.5px;
}
/* --- End of CSS --- */