/* RESET & BASES - Soft Pastel, Responsive, Flexbox-Exclusive */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F9F7F3;
  color: #222a38;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.03em;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
a {
  color: #1F8372;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #14324B;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #14324B;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.12rem; }

ul, ol {
  margin-left: 1.25em;
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
}
strong { font-weight: 600; }

/* CONTAINERS */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px 0 rgba(40,55,75,0.08);
  padding: 40px 28px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Soft pastel shadow, gentle spacing */
}
.text-section {
  align-items: flex-start;
  background: linear-gradient(120deg, #f7e7f4 0%, #f8fdfc 100%);
  box-shadow: 0 2px 16px 0 rgba(140,140,180,0.06);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 900px) {
  .content-wrapper {
    padding: 28px 10px;
  }
}

/* FLEXBOX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(50, 50, 150, 0.06);
  position: relative;
  padding: 28px 20px;
  flex: 1 1 240px;
  min-width: 240px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid { flex-direction: column; }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbed;
  border-radius: 18px;
  box-shadow: 0 1px 8px 0 rgba(215,195,159,0.13);
  margin: 18px 0;
  font-size: 1.07rem;
  color: #323048;
  min-height: 80px;
}
.testimonial-card p {
  margin-bottom: 0;
  font-style: italic;
  color: #173356;
}
.testimonial-card span {
  font-size: 0.96em;
  color: #1F8372;
  font-weight: bold;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* NAVIGATION STYLING */
header {
  background: linear-gradient(90deg, #fff8fb 0%, #eaf6fb 90%);
  padding: 0;
  box-shadow: 0 2px 8px 0 rgba(140, 160, 200, 0.03);
  position: relative;
  z-index: 100;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  padding: 20px 0 10px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.09rem;
  background: none;
}
.main-nav img {
  height: 40px;
  width: auto;
  margin-right: 18px;
  display: inline;
  border-radius: 0;
}
.main-nav a {
  color: #14324B;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  font-weight: 500;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f2f5fb;
  color: #1F8372;
}
.main-nav .cta.primary {
  background: #25A18E;
  color: #fff;
  font-size: 1.06rem;
  padding: 10px 20px;
  border-radius: 24px;
  box-shadow: 0 2px 10px 0 rgba(37,161,142,0.08);
  margin-left: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.16s, box-shadow 0.2s;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #14324B;
  color: #fff;
}
@media (max-width: 1040px) {
  .main-nav {
    flex-wrap: wrap;
    gap: 8px;
  }
}
/* Hide main menu on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: #25A18E;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 18px;
  border-radius: 16px;
  cursor: pointer;
  margin: 12px 10px 12px auto;
  z-index: 1100;
  box-shadow: 0 2px 10px 0 rgba(37,161,142,0.11);
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #1F8372;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }
}
/* MOBILE MENU STYLES */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(246,246,252,0.98);
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.48,.06,.51,1), opacity 0.18s;
  opacity: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 28px 0 rgba(80, 120, 180, 0.15);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: #FFEEEE;
  color: #C23939;
  border: none;
  font-size: 2.4rem;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  border-radius: 16px;
  cursor: pointer;
  padding: 4px 20px 2px;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FEE1E8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 26px;
  margin-top: 1.5rem;
}
.mobile-nav a {
  color: #14324B;
  background: none;
  font-size: 1.09rem;
  text-decoration: none;
  padding: 14px 12px;
  border-radius: 14px;
  width: 100%;
  transition: background 0.16s, color 0.13s;
}
.mobile-nav a:hover,.mobile-nav a:focus {
  background: #e8fcef;
  color: #25A18E;
}
.mobile-nav a.cta.primary {
  background: #25A18E;
  color: #fff;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO, FEATURES, CARDS, FAQ, TEAM, TABLES */
.feature-grid, .service-grid, .team-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  list-style: none;
}
.feature-grid li, .service-grid li, .team-overview > div {
  background: #f6f8fa;
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 1px 8px 0 rgba(180,170,255,0.07);
  flex: 1 1 220px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.feature-grid img, .service-grid img, .team-overview img {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
}
@media (max-width: 800px) {
  .feature-grid, .service-grid, .team-overview {
    flex-direction: column;
    gap: 18px;
  }
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: disc;
}
.service-descriptions, .service-inclusions, .payment-methods {
  margin-top: 20px;
  margin-bottom: 12px;
  padding: 18px 12px 15px 12px;
  background: #f8f7fc;
  border-radius: 12px;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 0 0;
  font-weight: 600;
  color: #25A18E;
}
.rating-summary img {
  height: 34px;
  width: 34px;
  margin-bottom: 0;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 8px;
  align-items: center;
}
.trust-badges span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  color: #8267A6;
  font-size: 1.01em;
  background: #f8eaff;
  padding: 8px 15px;
  border-radius: 16px;
}
.trust-badges img {
  height: 24px;
  width: 24px;
}

/******* TABLE STYLING ********/
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 32px 0 18px 0;
  background: #f7faff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(170,200,200,0.06);
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 20px 12px;
}
.pricing-table th {
  color: #14324B;
  background: #F3F6FC;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
}
.pricing-table tbody tr:nth-child(odd) {
  background: #fdf6f6;
}
.pricing-table tbody tr:nth-child(even) {
  background: #fcfbfe;
}
.pricing-table ul {
  margin-left: 0;
  padding-left: 18px;
}
@media (max-width: 580px) {
  .pricing-table, .pricing-table thead, .pricing-table tbody, .pricing-table tr, .pricing-table th, .pricing-table td {
    display: block;
    width: 100%;
  }
  .pricing-table th { display: none; }
  .pricing-table td {
    padding: 12px;
    border-bottom: 1px solid #ede7f6;
  }
}

/******* FAQ & LISTS ********/
.faq-list { margin-bottom: 16px; }
.faq-list dt {
  margin-top: 16px;
  margin-bottom: 4px;
  font-weight: 600;
  color: #1F8372;
  border-left: 5px solid #25A18E;
  padding-left: 8px;
}
.faq-list dd {
  margin-bottom: 10px;
  margin-left: 0;
}
.faq-search {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.faq-search input[type="text"] {
  padding: 10px 12px;
  font-size: 1.07rem;
  border: 1px solid #e5e4e1;
  border-radius: 10px;
  background: #f3f7fa;
  color: #14324B;
}
.faq-teaser {
  background: #fff6f1;
  border-left: 6px solid #25A18E;
  padding: 16px;
  border-radius: 15px;
  margin-top: 20px;
  font-size: 1.04rem;
}
.client-scenarios {
  background: #fdf9ff;
  border-left: 5px solid #A3BCF9;
  padding: 14px 15px 10px 18px;
  border-radius: 13px;
  margin: 18px 0 0 0;
}

/********* CARDS *********/
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

/******* CTA BUTTONS *******/
.cta {
  display: inline-block;
  background: #F5E3E6;
  color: #14324B;
  padding: 11px 28px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(175,150,240,0.09);
  margin-right: 7px;
  transition: background 0.17s, color 0.17s, box-shadow 0.21s;
}
.cta.primary {
  background: #25A18E;
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(37,161,142,0.13);
}
.cta.primary:hover, .cta.primary:focus {
  background: #14324B;
  color: #fff;
}
.cta.secondary {
  background: #fff;
  color: #25A18E;
  border: 2px solid #25A18E;
  box-shadow: 0 2px 6px 0 rgba(110,220,190,0.1);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #e3fffa;
  color: #14324B;
}

/******* ADDRESS/BUSINESS INFO *******/
.address-block, .phone-email, .business-hours {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.03em;
  background: #f6f8fa;
  padding: 12px 14px;
  border-radius: 10px;
  margin: 9px 0;
}
.address-block img, .phone-email img, .business-hours img {
  width: 24px;
  height: 24px;
  margin-right: 2px;
  border-radius: 0;
}

/******* FOOTER ******/
footer {
  background: linear-gradient(90deg, #f0f9f7 0%, #f5eaff 95%);
  padding: 0 0 24px 0;
  margin-top: 60px;
  border-top: 1px solid #ececf0;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding: 26px 0 10px 0;
  font-size: 1.03rem;
}
.footer-menu a {
  color: #14324B;
  text-decoration: none;
  transition: color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #25A18E;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  color: #7C7D94;
  font-size: 0.96rem;
}
@media (max-width: 600px) {
  .footer-menu {
    flex-direction: column;
    gap: 10px;
  }
}

/***************** COOKIE CONSENT BANNER & MODAL ****************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fbfbfd;
  border-top: 2px solid #F7DAD9;
  box-shadow: 0 -2px 26px 0 rgba(200,170,120,0.13);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 14px 19px 14px;
  font-size: 1rem;
  animation: slideUpCookie 0.36s cubic-bezier(.76,.06,.69,1);
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1.03rem;
  color: #14324B;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cookie-btn, .cookie-settings-btn {
  padding: 8px 22px;
  background: #25A18E;
  color: #fff;
  border: none;
  border-radius: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 550;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 1px 9px 0 rgba(37,161,142,0.07);
  transition: background 0.18s;
  margin: 0 3px;
}
.cookie-btn.reject {
  background: #F7DAD9;
  color: #B83636;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #F9B1AF;
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #1F8372;
  color: #fff;
}
.cookie-settings-btn {
  background: #fff;
  color: #25A18E;
  border: 2px solid #25A18E;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #eaf9f6;
  color: #14324B;
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(180,170,240,0.09);
  z-index: 4000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.25s ease;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffdfa;
  border: 2px solid #e6f6f9;
  border-radius: 18px;
  box-shadow: 0 2px 28px 0 rgba(175,150,180,0.16);
  max-width: 375px;
  width: 93vw;
  padding: 32px 30px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h3 {
  font-size: 1.16rem;
  margin-bottom: 8px;
  color: #145C7A;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #dddfe4;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
  margin-left: auto;
}
.cookie-toggle.enabled {
  background: #25A18E;
}
.cookie-toggle-thumb {
  display: block;
  height: 18px;
  width: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.2s;
}
.cookie-toggle.enabled .cookie-toggle-thumb {
  left: 18px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
/* Hide banner on small devices if modal is open */
@media (max-width: 500px) {
  .cookie-modal {
    padding: 16px 6vw 12px 6vw;
  }
}

/****** MISC CLASSES *******/
::-webkit-input-placeholder { color: #aaa; }
::placeholder { color: #adb5c2; }

/****** RESPONSIVE SPACING & FONT SIZES ******/
@media (max-width: 768px) {
  h1 { font-size: 1.46rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 1.04rem; }
  .container {
    padding: 0 5vw;
  }
  .section {
    margin-bottom: 38px;
    padding: 22px 4px;
  }
  .content-wrapper {
    padding: 15px 4px;
    border-radius: 12px;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 14px;
  }
}

/******* ANIMATIONS & MICRO-INTERACTIONS *******/
.cta, .main-nav a, .mobile-nav a, .cookie-btn, .cookie-settings-btn {
  transition: background 0.25s, color 0.19s, box-shadow 0.19s;
}
.card, .testimonial-card, .feature-grid li, .service-grid li, .team-overview > div {
  transition: transform 0.22s cubic-bezier(.73,.23,.56,1), box-shadow 0.2s;
}
.card:hover, .testimonial-card:hover, .feature-grid li:hover, .service-grid li:hover, .team-overview > div:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 4px 32px 0 rgba(80,126,152,0.14);
}

/******* UTILITIES ******/
.hide-mobile { display: block; }
@media (max-width: 900px) {
  .hide-mobile { display: none !important; }
}

/********** SPACING IN CARD CONTAINERS ********/
.card-container > *,
.feature-grid > *,
.service-grid > *,
.team-overview > * {
  margin-bottom: 0;
}
.card-container, .feature-grid, .service-grid, .team-overview {
  margin-bottom: 32px;
}

/* Ensure no content overlaps, margins between sections */
section + section,
.section + .section,
.content-wrapper + .content-wrapper {
  margin-top: 40px;
}
@media (max-width: 600px) {
  section + section {
    margin-top: 17px;
  }
}

/* Make sure everything inside card/feature/service is spaced */
.card > *, .feature-grid li > *, .service-grid li > *, .team-overview > div > * {
  margin-bottom: 8px;
}
.card > *:last-child, .feature-grid li > *:last-child, .service-grid li > *:last-child, .team-overview > div > *:last-child {
  margin-bottom: 0;
}

/********* ACCESSIBILITY ********/
:focus {
  outline: 2px solid #25A18E;
  outline-offset: 3px;
}

/**** Print small fix ****/
@media print {
  .main-nav, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body, .container, .content-wrapper, section, .section {
    background: #fff !important;
    color: #222 !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
}