/* RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #223147;
  background: linear-gradient(135deg, #F6F4EF 0%, #7EBFA3 100%);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7EBFA3;
  outline: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #223147;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
h1 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

p, li {
  font-size: 1rem;
  color: #2b3b50;
}
strong {
  font-weight: 700;
}

/* CONTAINERS, LAYOUTS, SECTIONS */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

.section:last-of-type {
  margin-bottom: 0;
}

/* FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(34,49,71,0.08);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(34,49,71,0.13);
  transform: translateY(-4px) scale(1.015);
}
.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: #fafbfc;
  border-radius: 14px;
  box-shadow: 0 1px 5px rgba(34,49,71,0.04);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 24px 20px;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(34,49,71,0.05);
}

/* HERO SECTION */
.hero {
  min-height: 350px;
  background: linear-gradient(120deg, #f6f4ef 50%, #7EBFA3 100%);
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 50px 0 60px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  font-size: 2.3rem;
  color: #223147;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #223147;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ececec;
  box-shadow: 0 2px 8px rgba(34,49,71,0.04);
  position: sticky;
  top: 0;
  z-index: 1100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px 16px 20px;
}
header img {
  height: 48px;
  margin-right: 18px;
}
header nav {
  display: flex;
  gap: 23px;
}
header nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #223147;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}
header nav a:hover, header nav a:focus {
  color: #7EBFA3;
  border-bottom: 2px solid #7EBFA3;
}
.cta.primary {
  background: linear-gradient(90deg, #7EBFA3 0%, #223147 100%);
  color: #fff;
  padding: 10px 30px;
  border-radius: 24px;
  font-weight: 700;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(34,49,71,0.09);
  margin-left: 14px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.23s;
  border: none;
  display: inline-block;
  cursor: pointer;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, #223147 0%, #7EBFA3 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #7EBFA3;
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  padding: 6px 15px;
  margin-left: 12px;
  z-index: 1201;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #223147;
  color: #fff;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 4px 32px rgba(34,49,71,0.14);
  z-index: 1500;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.87,-.41,.19,1.44), opacity 0.29s;
  opacity: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 30px 16px 30px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #7EBFA3;
  color: #fff;
  border-radius: 8px;
  font-size: 1.7rem;
  padding: 6px 16px;
  margin-bottom: 22px;
  z-index: 1501;
  transition: background 0.20s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #223147;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #223147;
  padding: 13px 0;
  font-weight: 600;
  background: transparent;
  border-radius: 5px;
  margin: 0 2px;
  transition: background 0.2s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7EBFA3;
  color: #fff;
}

@media (max-width: 1020px) {
  header nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 900px) {
  .cta.primary {
    margin-left: 0;
  }
}

/* MAIN CONTENT SPACING */
main {
  padding-top: 32px;
  padding-bottom: 32px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}

/* FEATURES GRID */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 10px rgba(34,49,71,0.06);
  padding: 28px 18px 26px 18px;
  text-align: left;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 230px;
  max-width: 320px;
  transition: box-shadow 0.22s, transform 0.22s;
  margin-bottom: 20px;
  gap: 12px;
}
.feature-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}
.feature-card h3 {
  font-size: 1.13rem;
  font-family: 'Merriweather', serif;
}
.feature-card p {
  font-size: 1rem;
  color: #223147;
}
.feature-card:hover {
  box-shadow: 0 4px 18px rgba(34,49,71,0.13);
  transform: translateY(-3px) scale(1.017);
}

/* CTA BAR / SECTION */
.cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  padding: 32px 0 18px 0;
}
.cta h2 {
  color: #223147;
}

/* TESTIMONIALS */
.testimonials .testimonial-card {
  background: #f4f8f6;
  border-radius: 12px;
  color: #1f2733;
  box-shadow: 0 1px 14px rgba(34,49,71,0.07);
  gap: 20px;
  align-items: flex-start;
  padding: 28px 22px;
}
.testimonials .testimonial-card p {
  font-size: 1.08rem;
  color: #223147;
  margin-bottom: 9px;
}
.testimonials .testimonial-card span {
  font-size: 0.97rem;
  color: #535f77;
}
.testimonials .testimonial-card strong {
  color: #223147;
}

/* FILTER & REVIEW LIST */
.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 28px 0 18px 0;
}
.filter-options span {
  font-weight: bold;
  color: #223147;
  margin-right: 7px;
}
.filter-options button {
  background: #7EBFA3;
  color: #fff;
  border-radius: 5px;
  padding: 7px 13px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: background 0.25s, color 0.2s;
}
.filter-options button:hover, .filter-options button:focus {
  background: #223147;
  color: #fff;
}

.review-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 22px 0;
}
.review-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(34,49,71,0.06);
  padding: 18px 15px 16px 18px;
  flex: 1 1 230px;
  min-width: 200px;
  max-width: 330px;
}
.review-item h3 {
  font-size: 1.02rem;
  color: #223147;
  margin-bottom: 8px;
  font-family: 'Merriweather', serif;
}
.review-item p {
  color: #2b3b50;
  font-size: 0.98rem;
}
.rating {
  color: #F6A623;
  font-weight: 700;
  font-size: 1.1em;
  margin-left: 10px;
  letter-spacing: 1px;
}

/* CONTACT INFO & TRUST SIGNALS */
.contact-info {
  background: #f4f8f6;
  border-radius: 10px;
  padding: 28px 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 1rem;
}
.contact-info img {
  vertical-align: middle;
  height: 24px;
  width: 24px;
  margin-right: 9px;
}
.trust-signals {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.98rem;
  color: #228060;
}
.trust-signals li {
  padding-left: 2px;
  position: relative;
}
.trust-signals li:before {
  content: "✓ ";
  color: #7EBFA3;
  font-weight: bold;
  margin-right: 2px;
}

/* EVENT CALENDAR */
.event-calendar {
  background: #f7faf9;
  border-radius: 11px;
  padding: 24px 18px 15px 18px;
  margin: 25px 0 19px 0;
  box-shadow: 0 1px 8px rgba(34,49,71,0.045);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.event-calendar h3 {
  font-size: 1.01rem;
  color: #223147;
  margin-bottom: 11px;
  font-family: 'Merriweather', serif;
}
.event-calendar ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.event-calendar li {
  color: #2b3b50;
  font-size: 0.98rem;
}

/* THANK YOU PAGE */
.thankyou {
  padding: 50px 0 70px 0;
  background: linear-gradient(95deg, #7EBFA3 0%, #F6F4EF 100%);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,49,71,0.09);
}
.thankyou h1 {
  color: #223147;
  font-size: 2.1rem;
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  background: #223147;
  padding: 32px 0 14px 0;
  color: #fff;
  margin-top: 55px;
}
footer .container {
  gap: 18px;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  justify-content: center;
}
.footer-nav a {
  color: #fff;
  opacity: 0.88;
  font-size: 0.98rem;
  padding: 5px 4px;
  border-radius: 4px;
  transition: background 0.2s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #7EBFA3;
  background: #fff;
}
.footer-info {
  text-align: center;
  margin-bottom: 7px;
  opacity: 0.92;
}
footer small {
  font-size: 0.9rem;
  color: #b5c1c9;
  margin-top: 6px;
  text-align: center;
  display: block;
  opacity: 0.60;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #223147;
  color: #fff;
  padding: 18px 15px;
  z-index: 2100;
  box-shadow: 0 -4px 16px rgba(34,49,71,0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.35s, opacity 0.28s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner p {
  color: #fff;
  font-size: 0.97rem;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cookie-banner button, .cookie-banner .btn {
  padding: 8px 22px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
  background: #7EBFA3;
  color: #fff;
  border: none;
  margin-bottom: 0;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner button.accept {
  background: #7EBFA3;
}
.cookie-banner button.reject {
  background: #d15d5d;
}
.cookie-banner button.settings {
  background: #223147;
  border: 1.5px solid #7EBFA3;
  color: #7EBFA3;
}
.cookie-banner button:hover, .cookie-banner .btn:hover {
  background: #223147;
  color: #fff;
}
.cookie-banner button.reject:hover {
  background: #b43b3b;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,49,71,0.56);
  z-index: 2300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.34s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  color: #223147;
  padding: 36px 26px 22px 26px;
  min-width: 330px;
  max-width: 96vw;
  box-shadow: 0 8px 40px rgba(34,49,71,0.18);
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  animation: fadeInModal 0.24s cubic-bezier(.71,-0.12,.4,1.22);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.93); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 11px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 0;
}
.cookie-modal label {
  font-weight: 600;
  color: #223147;
  font-size: 1em;
}
.cookie-modal .cookie-toggle {
  accent-color: #7EBFA3;
  width: 20px;
  height: 20px;
}
.cookie-modal .essential[disabled],
.cookie-modal .essential[readonly] {
  accent-color: #7EBFA3;
  opacity: 0.55;
}
.cookie-modal .cookie-buttons {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .btn {
  background: #7EBFA3;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  padding: 9px 20px;
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
}
.cookie-modal .btn.cancel {
  background: #a0aad1;
  color: #223147;
}
.cookie-modal .btn:hover, .cookie-modal .btn:focus {
  background: #223147;
  color: #fff;
}

.cookie-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #7EBFA3;
  cursor: pointer;
  border-radius: 6px;
  padding: 4px 10px;
  transition: color 0.18s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #223147;
}

/* RESPONSIVE DESIGN -- MOBILE FIRST */
@media (max-width: 1140px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .review-list, .card-container, .content-grid {
    gap: 17px;
  }
  .footer-nav {
    gap: 14px;
  }
}
@media (max-width: 800px) {
  .hero {
    padding: 32px 0 40px 0;
    min-height: 220px;
  }
}
@media (max-width: 700px) {
  .container, main {
    padding: 0 8px;
  }
  section, .section {
    padding: 24px 6px;
    margin-bottom: 36px;
  }
  .footer-nav {
    gap: 7px;
    justify-content: center;
  }
  .card, .feature-card, .review-item {
    min-width: unset;
    max-width: 100%;
    padding: 20px 10px;
  }
  .review-list, .feature-grid, .card-container {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.38rem;
  }
  h1 {
    font-size: 1.26rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  main {
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .card, .feature-card, .review-item, .contact-info, .testimonial-card {
    padding: 14px 7px;
  }
}
@media (max-width: 768px) {
  .content-grid, .text-image-section, .feature-grid, .review-list, .card-container {
    flex-direction: column;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
}

/* MICRO-INTERACTIONS & ANIMATIONS */
.cta.primary, .cookie-banner button, .cookie-modal .btn {
  transition: background 0.25s, color 0.20s, transform 0.18s, box-shadow 0.19s;
}
.card, .feature-card, .review-item, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.16s;
}
.feature-card:hover, .review-item:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px rgba(34,49,71,0.10);
}

/* SAFETY -- BLOCK ABSOLUTE LAYOUTS FOR CARDS */
.card, .feature-card, .review-item, .testimonial-card {
  position: relative;
}

/* Z-INDEX FOR LAYERED ELEMENTS */
.mobile-menu,
.cookie-banner,
.cookie-modal-overlay {
  z-index: 2000;
}
header {
  z-index: 1100;
}

/* CUSTOM SCROLLBAR for contemporary look */
::-webkit-scrollbar {
  width: 9px;
  background: #f4f8f6;
}
::-webkit-scrollbar-thumb {
  background: #e0e7e9;
  border-radius: 6px;
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
/* Hide visually, but keep for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
