/* ================================================================
   Reset & Base Styles
================================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: "Libre Baskerville", Georgia, serif;
  color: #2A4756;
  background-color: #FBFBF9;
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-size: 1rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Font Face (Classical Touch) */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Montserrat:wght@700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", Georgia, serif;
  font-weight: 700;
  color: #2A4756;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; line-height: 1.15; margin-bottom: 20px; }
h2 { font-size: 1.5rem; line-height: 1.25; }
h3 { font-size: 1.17rem; line-height: 1.3; }

p, li, span, a, input, button {
  font-family: "Libre Baskerville", Georgia, serif;
}
p,
li {
  font-size: 1rem;
  color: #2A4756;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
  color: #224156;
}
a {
  color: #2A4756;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #6BCB77;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

button, .btn-primary, .btn-secondary {
  font-family: "Montserrat", Georgia, serif;
  font-size: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0.75em 2em;
  border-radius: 32px;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
  font-weight: 700;
  margin: 8px 0 0 0;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: #2A4756;
  color: #fff;
  box-shadow: 0 2px 8px rgba(42, 71, 86, 0.08);
}
.btn-primary:hover, .btn-primary:focus {
  background: #355b70;
  color: #FFF;
  box-shadow: 0 4px 12px rgba(42, 71, 86, 0.16);
}
.btn-secondary {
  background: #fff;
  color: #2A4756;
  border: 2px solid #6BCB77;
  box-shadow: 0 2px 9px rgba(107, 203, 119, 0.05);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #6BCB77;
  color: #fff;
  border: 2px solid #6BCB77;
  box-shadow: 0 4px 12px rgba(107, 203, 119, 0.14);
}

input[type="text"] {
  border: 1px solid #c0c6cc;
  background: #F5F5F5;
  border-radius: 8px;
  padding: 0.6em 1em;
  margin: 16px 0 24px 0;
  font-size: 1rem;
  font-family: "Libre Baskerville", Georgia, serif;
  color: #2A4756;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}
input[type="text"]:focus {
  border: 1.5px solid #6BCB77;
  box-shadow: 0 0 0 2px rgba(107,203,119,0.10);
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 28px rgba(42, 71, 86, 0.04);
}

/* ================
    NAVIGATION
=================== */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(42, 71, 86, 0.03);
  position: sticky;
  top: 0;
  z-index: 70;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 24px 0 18px 0;
}
.main-nav a {
  font-size: 1rem;
  color: #2A4756;
  text-decoration: none;
  padding: 6px 18px;
  border-radius: 6px;
  transition: background 0.19s, color 0.19s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f0f3f7;
  color: #6BCB77;
}
.main-nav a.btn-primary {
  margin-left: auto;
  margin-right: 0;
  color: #6BCB77;
  padding: 0.5em 1.5em;
}
.main-nav img {
  height: 44px;
  margin-right: 28px;
}

/* Hamburger (Mobile Menu Toggle) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #2A4756;
  margin-left: auto;
  z-index: 101;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #6BCB77;
}

/* =========================
   MOBILE MENU OVERLAY
========================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 380px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -4px 0 28px rgba(42,71,86,0.07);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.62,0,0.37,1);
  display: flex;
  flex-direction: column;
  z-index: 105;
  padding: 0 0 32px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #2A4756;
  padding: 20px 20px 8px 24px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #6BCB77;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 0 0;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  color: #2A4756;
  font-size: 1.08rem;
  text-decoration: none;
  padding: 12px 0;
  border-radius: 8px;
  width: 90%;
  transition: background 0.22s, color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f5faf7;
  color: #6BCB77;
}

/* Overlay (dark bg) for mobile menu (optional faded effect) */
.mobile-menu::before {
  content: '';
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(42,71,86,0.11);
  z-index: -1;
}
.mobile-menu.open::before {
  display: block;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 10px;
  }
  .main-nav a {
    font-size: 0.97rem;
    padding: 6px 10px;
  }
  .main-nav img {
    margin-right: 10px;
  }
}

@media (max-width: 900px) {
  .main-nav a:not(:first-child):not(.btn-primary) {
    display: none;
  }
  .main-nav .btn-primary {
    margin-right: 38px;
  }
  .mobile-menu-toggle {
    display: inline-block;
    margin: 0 12px 0 0;
  }
}
@media (max-width: 500px) {
  .main-nav img {
    height: 30px;
  }
}


/* ================================================================
   HERO & SECTION BASICS
================================================================ */
.hero {
  background: #f5f6fa;
  border-radius: 0 0 36px 36px;
  padding: 44px 0 44px 0;
  margin-bottom: 36px;
  box-shadow: 0 2px 24px rgba(107,203,119,0.05);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
  line-height: 1.18;
  color: #2A4756;
}
.hero p {
  font-size: 1.12rem;
  color: #2A4756;
  margin-bottom: 22px;
}

/* ================================================================
   FLEXBOX SECTION & CARD PATTERNS
================================================================ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(42,71,86,0.07);
  padding: 24px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.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: #F8F9F7;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(42, 71, 86, 0.07);
  border-left: 5px solid #6BCB77;
  min-width: 220px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===========
 FEATURES
============ */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 0;
  justify-content: flex-start;
}
.features ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
  background: #F8F9F7;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(42,71,86,0.05);
  padding: 20px 22px;
  min-width: 200px;
  flex: 1 1 240px;
  margin-bottom: 0;
}
.features ul li img {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(107,203,119,0.11);
  padding: 6px;
  margin-right: 4px;
}
.features ul li strong {
  font-size: 1.07em;
  color: #2A4756;
}

/* ===========
 SERVICES
============ */
.popular-services ul,
.services-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 0;
}
.popular-services ul li,
.services-list ul li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(42,71,86,0.04);
  padding: 28px 24px 20px;
  flex: 1 1 250px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  transition: box-shadow 0.17s;
  margin-bottom: 0;
}
.services-list ul li img {
  width: 35px;
  height: 35px;
  margin-bottom: 9px;
  background: #f5f9f7;
  border-radius: 8px;
  padding: 4px;
}
.popular-services ul li h3, .services-list ul li h3 {
  margin-bottom: 7px;
  font-size: 1.15rem;
  color: #2A4756;
}
.popular-services ul li span,
.services-list ul li span {
  font-size: 1.01em;
  font-family: "Montserrat", Georgia, serif;
  color: #6BCB77;
  font-weight: 700;
  margin-top: 8px;
}
.popular-services ul li:hover,
.services-list ul li:hover {
  box-shadow: 0 7px 24px rgba(107, 203, 119, 0.09);
}

/* ===========
 TESTIMONIALS
============ */
.testimonials .testimonial-card {
  background: #f7faf8;
  color: #243e2b;
  border-left: 5px solid #6BCB77;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(42,71,86,0.04);
}
.testimonials .testimonial-card p {
  font-size: 1.09rem;
  color: #223d2a;
  margin: 0 0 8px 0;
}
.testimonials .testimonial-card span {
  font-size: 0.98rem;
  color: #55677a;
  font-family: "Montserrat", Georgia, serif;
}
.testimonials h2 {
  margin-bottom: 18px;
}

/* BLOG PREVIEW + LIST */
.blog-preview ul, .blog-list ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
  margin-bottom: 28px;
}
.blog-preview ul li, .blog-list ul li {
  background: #FFF;
  border-radius: 9px;
  box-shadow: 0 2px 10px rgba(42, 71, 86, 0.04);
  padding: 14px 20px;
  transition: box-shadow 0.17s, background 0.18s;
}
.blog-preview ul li a, .blog-list ul li a {
  font-size: 1.04rem;
  font-family: "Montserrat", Georgia, serif;
  text-decoration: none;
  color: #2A4756;
  transition: color 0.16s;
}
.blog-preview ul li:hover, .blog-list ul li:hover {
  background: #F5FCF7;
  box-shadow: 0 8px 24px rgba(107,203,119,0.12);
}
.blog-preview ul li a:hover, .blog-list ul li a:hover {
  color: #6BCB77;
  text-decoration: underline;
}

/* ==============
CATEGORIES/ASIDE
============== */
aside {
  background: #f5f6fa;
  border-radius: 8px;
  padding: 22px 16px;
  margin-top: 16px;
  box-shadow: 0 1px 6px rgba(42, 71, 86, 0.02);
}
aside h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
aside ul {
  flex-direction: column;
  display: flex;
  gap: 8px;
}
aside a {
  color: #2A4756;
  text-decoration: underline;
  transition: color 0.13s;
}
aside a:hover {
  color: #6BCB77;
}

/* Mini Contact Section */
.mini-contact .text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.mini-contact .text-section p img {
  margin-right: 9px;
  vertical-align: middle;
  width: 19px;
}

/* Confirmation/Thank You */
.confirmation {
  min-height: 260px;
}
.confirmation h1 {
  font-size: 2rem;
}
.cta-explore .btn-secondary {
  font-size: 1.09rem;
  padding: 0.8em 1.7em;
}

/* CTA Section */
.cta-section, .newsletter-cta, .cta-individual-tips {
  background: #FFF;
  border-radius: 18px;
  margin-top: 34px;
  margin-bottom: 48px;
  padding: 44px 28px;
  box-shadow: 0 4px 18px rgba(107,203,119,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* ===========
 CONTACT PAGE
============ */
.contact-info, .contact-benefits {
  margin-bottom: 38px;
}
.contact-info .content-wrapper, .contact-benefits .content-wrapper {
  gap: 13px;
}
.contact-info p img, .contact-benefits li img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 9px;
  border-radius: 6px;
  background: #f5f9f7;
  padding: 3px;
}
.contact-benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.contact-benefits ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #FAF8F6;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(42,71,86,0.04);
  padding: 18px 20px;
  gap: 12px;
  flex: 1 1 220px;
}
.contact-benefits ul li strong {
  color: #2A4756;
  margin-right: 5px;
}

/* ===========
  LEGAL PAGE
============ */
.legal-section {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(42,71,86,0.055);
  margin: 45px 0 56px 0;
  padding: 42px 22px;
}
.legal-section h1, .legal-section h2 {
  color: #2A4756;
}
.legal-section ul {
  flex-direction: column;
  display: flex;
  gap: 10px;
  margin: 0 0 18px 0;
}

/* ===========
  FOOTER
============ */
footer {
  background: #2A4756;
  color: #FFF;
  padding: 43px 0 25px 0;
  margin-top: 74px;
  font-size: 0.96rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.footer-nav,
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 6px;
}
.footer-nav a, .legal-nav a {
  color: #EEF6F5;
  text-decoration: underline;
  transition: color 0.17s;
  font-family: "Montserrat", Georgia, serif;
}
.footer-nav a:hover, .legal-nav a:hover {
  color: #6BCB77;
  text-decoration: none;
}
.social-media {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 0;
  margin-top: 4px;
}
.social-media img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  transition: background 0.14s, transform 0.19s;
  cursor: pointer;
}
.social-media img:hover {
  background: #6BCB77;
  transform: scale(1.08);
}
footer small {
  color: #DFEFE7;
  margin-top: 16px;
  display: block;
}

/* ========== RESPONSIVE FLEX ============= */
@media (max-width: 820px) {
  .footer-nav, .legal-nav {
    gap: 11px;
    flex-wrap: wrap;
  }
  .features ul, .popular-services ul, .services-list ul, .contact-benefits ul {
    flex-direction: column;
    gap: 17px;
  }
  .features ul li, .popular-services ul li, .services-list ul li, .contact-benefits ul li {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 7vw;
  }
  .content-wrapper, .cta-section, .newsletter-cta, .cta-individual-tips {
    padding: 0;
    border-radius: 0;
    gap: 19px;
  }
  .section, .legal-section {
    padding: 25px 6vw;
    border-radius: 12px;
  }
  .hero {
    padding: 28px 0 29px 0;
    border-radius: 0 0 14px 14px;
  }
  .features ul,
  .popular-services ul,
  .services-list ul,
  .contact-benefits ul {
    flex-direction: column;
    gap: 15px;
  }
  .features ul li, .popular-services ul li, .services-list ul li, .contact-benefits ul li {
    width: 100%;
    min-width: 0;
    padding: 14px 10px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 7px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .mini-contact .text-section {
    gap: 10px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 576px) {
  h1 { font-size: 1.43rem; }
  h2 { font-size: 1.09rem; }
  .container {
    padding: 0 4vw;
  }
  .section {
    padding: 14px 1vw;
    margin-bottom: 27px;
  }
  .cta-section, .newsletter-cta, .cta-individual-tips {
    padding: 18px 2vw;
    border-radius: 8px;
    margin-top: 16px;
    margin-bottom: 20px;
  }
  .footer-nav, .legal-nav {
    flex-direction: column;
    gap: 7px;
    align-items: center;
  }
  .social-media {
    gap: 12px;
  }
}

/* ================
   COOKIE BANNER
================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f6fbf7;
  box-shadow: 0 -2px 14px rgba(42,71,86,0.13);
  padding: 18px 22px;
  gap: 13px;
  font-size: 1rem;
  border-top: 2px solid #6BCB77;
  transition: transform 0.38s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner p {
  color: #2A4756;
  margin: 0 0 6px 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: "Montserrat", Georgia, serif;
  font-size: 1rem;
  border-radius: 22px;
  padding: 0.5em 1.4em;
  margin: 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s;
  font-weight: 700;
  border: none;
  outline: none;
  cursor: pointer;
}
.cookie-accept {
  background: #6BCB77;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #42a553;
}
.cookie-settings {
  background: #fff;
  color: #2A4756;
  border: 1.5px solid #6BCB77;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #e2fae7;
  color: #2A4756;
}
.cookie-deny {
  background: #F5F5F5;
  color: #a3a9b0;
  border: 1.5px solid #c0c6cc;
}
.cookie-deny:hover, .cookie-deny:focus {
  color: #6BCB77;
  border-color: #6BCB77;
}

/* =======================
  COOKIE PREFERENCES MODAL
========================*/
.cookie-modal {
  position: fixed;
  left: 0; right:0; top: 0; bottom: 0;
  z-index: 211;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42,71,86,0.14);
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.28s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 38px 28px 32px 28px;
  max-width: 420px;
  min-width: 240px;
  min-height: 180px;
  box-shadow: 0 8px 36px rgba(98,156,110,0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal .modal-content h3 {
  font-size: 1.24rem;
  color: #2A4756;
  margin-bottom: 12px;
}
.cookie-modal .modal-content ul {
  padding: 0;
  margin: 0;
  flex-direction: column;
  display: flex;
  gap: 13px;
}
.cookie-modal .modal-content li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .cookie-toggle {
  width: 32px;
  height: 18px;
  background: #ddd;
  border-radius: 12px;
  position: relative;
  margin-left: auto;
  cursor: pointer;
}
.cookie-modal .cookie-toggle[data-enabled="true"] {
  background: #6BCB77;
}
.cookie-modal .cookie-toggle::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFF;
  box-shadow: 0 1px 4px rgba(42,71,86,0.06);
  position: absolute;
  top:1px; left:1px;
  transition: left 0.23s;
}
.cookie-modal .cookie-toggle[data-enabled="true"]::after {
  left: 15px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 11px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.47rem;
  color: #a0b2cb;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .modal-close:hover {
  color: #6BCB77;
}

/* ===========
 ANIMATIONS
============ */
.mobile-menu,
.cookie-banner,
.cookie-modal {
  will-change: transform, opacity;
}
.mobile-menu {
  transition: transform 0.33s cubic-bezier(0.62,0,0.37,1);
}
.cookie-banner {
  transition: transform 0.38s;
}
.cookie-modal {
  transition: opacity 0.28s;
}
.card, .testimonial-card, .features ul li, .popular-services ul li, .services-list ul li, .blog-preview ul li, .blog-list ul li {
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .testimonial-card:hover, .features ul li:hover, .popular-services ul li:hover, .services-list ul li:hover, .blog-preview ul li:hover, .blog-list ul li:hover {
  box-shadow: 0 7px 28px rgba(98,156,110,0.09);
  transform: translateY(-3px) scale(1.01);
}

/* =============
 MISC SPACING
============== */
.section,
.hero,
.legal-section {
  margin-bottom: 60px;
}
.card, .testimonial-card {
  margin-bottom: 20px;
}
.card-container,
.content-grid,
.features ul,
.popular-services ul,
.services-list ul,
.contact-benefits ul {
  gap: 24px;
}
.text-image-section, .feature-item {
  gap: 15px;
}

/* ===========
 UTILITIES
=========== */
.text-section {
  max-width: 680px;
}
strong { font-weight: 700; }
hr {
  border: none;
  height: 1px;
  background: #e5e7eb;
  margin: 18px 0;
}
.hide { display: none; }

/* ====== END CSS ======= */
