/* =========================================================
   CSS RESET & BASELINE
   ========================================================= */
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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #2B362A;
  background: #FAFAFA;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  color: #316D5B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #297357;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* =========================================================
   FONT FAMILIES / TYPOGRAPHY
   ========================================================= */
@import url('https://fonts.googleapis.com/css?family=Nunito:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 900;
  color: #316D5B;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; line-height: 1.1; }
h2 { font-size: 1.5rem; margin-bottom: 16px; line-height: 1.15; }
h3 { font-size: 1.125rem; margin-bottom: 12px; font-weight: 800; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 10px; font-weight: 700; }
p {
  margin-bottom: 18px;
  color: #314132;
}
strong { font-weight: bold; }

/* =========================================================
   COLOR PALETTE (BRAND + ORGANIC TONES)
   ========================================================= */
:root {
    --primary: #316D5B;
    --primary-dark: #297357;
    --secondary: #FAFAFA;
    --accent: #92CAB3;
    --earth1: #B1A277;
    --earth2: #E2DBC7;
    --leaf-green: #5E886E;
    --error: #B4443A;
    --shadow: rgba(49,109,91,0.08);
    --card-bg: #FFFFFF;
    --card-alt: #F6F9F7;
    --testimonials-bg: #E2DBC7;
}

/* =========================================================
   CONTAINER & SECTIONS
   ========================================================= */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

 
@media (min-width: 769px) {
  .content-wrapper,
  .about-preview .content-wrapper,
  .about-story .content-wrapper,
  .about-booking .content-wrapper {
    gap: 32px;
    align-items: flex-start;
  }
}

.card-container,
.card-grid,
.service-features-grid,
.service-cards-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  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;
    align-items: stretch;
  }
}

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

/* =========================================================
   HEADER & NAVIGATION (DESKTOP + MOBILE)
   ========================================================= */
header {
  background: #fff;
  box-shadow: 0 4px 12px var(--shadow);
  position: relative;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #fff;
}
.main-nav .logo {
  margin-right: 36px;
  flex-shrink: 0;
}
.main-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
.main-nav ul li a {
  color: #316D5B;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus,
.main-nav ul li a.active {
  background: var(--accent);
  color: #195238;
}
.main-nav .cta.primary {
  margin-left: 28px;
}

/* Burger for mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  padding: 5px 16px 5px 12px;
  cursor: pointer;
  z-index: 512;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary-dark);
}

/* Hide nav on mobile, show burger */
@media (max-width: 1000px) {
  .main-nav ul,
  .main-nav .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 24px;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(49,109,91, 0.94);
  z-index: 9000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.87,-0.41,.19,1.44);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.6rem;
  align-self: flex-end;
  margin: 28px 30px 0 0;
  cursor: pointer;
  z-index: 9020;
  transition: color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #92CAB3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 48px 0 0 36px;
  gap: 24px;
}
.mobile-nav a {
  color: #fff;
  background: transparent;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 16px 0;
  border-radius: 6px;
  width: 90vw;
  max-width: 350px;
  font-weight: 800;
  transition: background 0.15s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #195238;
  color: #92CAB3;
}

@media (min-width: 1001px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* =========================================================
   HERO SECTIONS
   ========================================================= */
.hero {
  background: linear-gradient(120deg, #E2DBC7 60%, var(--accent) 100%);
  border-radius: 0 0 48px 48px / 0 0 30px 30px;
  margin-bottom: 48px;
}
.hero .container {
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero h1 {
  color: #316D5B;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 0 2px 1px #F2F7F5;
}
.hero p {
  color: #314132;
  font-size: 1.15rem;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 24px 24px / 0 0 16px 16px;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* =========================================================
   FEATURES & SERVICE CARDS
   ========================================================= */
.features {
  background: #F6F9F7;
  border-radius: 28px;
}
.service-features-grid, .service-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.feature-card {
  background: var(--card-bg);
  border-radius: 18px 32px 22px 26px / 18px 30px 22px 32px;
  box-shadow: 0 3px 16px var(--shadow);
  padding: 28px 26px 24px 26px;
  min-width: 225px;
  flex: 1 1 240px;
  transition: transform .18s cubic-bezier(.72,.09,.25,1.21), box-shadow .18s;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.feature-card h3 {
  color: var(--primary);
  font-size: 1.14rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: #435043;
  margin-bottom: 10px;
}
.feature-card .price {
  margin-top: auto;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}
.feature-card:hover, .feature-card:focus {
  transform: translateY(-7px) scale(1.02) rotate(-1deg);
  box-shadow: 0 6px 28px rgba(49,109,91,0.14);
  z-index: 2;
}

/* Card/section alt backgrounds for organic shapes */
.about-preview, .contact-preview, .cta-banner {
  background: #E2DBC7;
  border-radius: 28px;
}

/* =========================================================
   CTA BUTTONS & INTERACTIVES
   ========================================================= */
.cta,
button,
input[type="submit"] {
  font-family: 'Nunito', Arial, sans-serif;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 13px 36px;
  margin-top: 12px;
  border-radius: 36px 16px 24px 40px / 28px 22px 22px 32px;
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.7px;
  transition: background 0.18s, transform 0.11s, box-shadow 0.17s;
  box-shadow: 0 2px 10px var(--shadow);
  min-width: 160px;
  text-align: center;
  outline: none;
}
.cta.primary, .cta:focus {
  background: linear-gradient(98deg, var(--primary) 80%, var(--leaf-green));
  color: #fff;
}
.cta.secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  margin-left: 0;
}
.cta:focus, .cta:hover,
button:focus, button:hover {
  background: var(--primary-dark);
  color: #FFF;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 26px rgba(49,109,91,0.13);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials, .testimonials-gallery {
  background: var(--testimonials-bg);
  border-radius: 28px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials-wrapper, .testimonials-gallery .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 220px;
  max-width: 400px;
  background: #fff;
  border-radius: 22px 30px 22px 32px / 22px 22px 26px 38px;
  box-shadow: 0 3px 16px rgba(49, 109, 91, 0.07);
  padding: 28px 28px 22px 22px;
  font-size: 1.02rem;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.15s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 30px rgba(49,109,91,.14);
  transform: translateY(-4px) scale(1.03);
  z-index: 2;
}
.testimonial-card p {
  color: #314132;
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 10px;
}
.testimonial-card .stars {
  font-size: 1.1rem;
  color: #F8C963;
  letter-spacing: 2px;
  margin-top: -8px;
  user-select: none;
}
.testimonial-card span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #316D5B;
}

/* =========================================================
   TABLES & LISTS (PRICING, VALUES)
   ========================================================= */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 32px;
  background: #FBFCFA;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(49,109,91,0.05);
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 15px 14px;
  font-size: 1rem;
}
.pricing-table th {
  background: var(--card-alt);
  color: var(--primary);
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
}
.pricing-table tr:nth-child(even) {
  background: #F6F9F7;
}
.pricing-table tr:nth-child(odd) {
  background: #fff;
}
.pricing-table td {
  color: #42584E;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--primary);
  color: #fff;
  padding: 32px 0 0 0;
  border-radius: 32px 32px 0 0/ 22px 18px 0 0;
  margin-top: 44px;
  box-shadow: 0 -2px 12px var(--shadow);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.8;
  font-size: 1rem;
  padding: 7px 12px;
  border-radius: 6px;
  transition: color 0.2s, opacity 0.2s, background 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  color: #E2DBC7;
  background: rgba(255,255,255,0.07);
}
footer .text-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 14px 0;
}
footer .text-section span {
  color: #E2DBC7;
  font-size: 0.97rem;
}

/* =========================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #F6F9F7;
  color: #2B362A;
  z-index: 9999;
  padding: 24px 18px 18px 18px;
  border-radius: 24px 24px 0 0 / 14px 32px 0 0;
  box-shadow: 0 -2px 16px rgba(49,109,91,.12);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  transition: transform .38s cubic-bezier(.62,.12,.27,1.11), opacity .18s;
  transform: translateY(0%);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-btn {
  border-radius: 24px 10px 24px 36px / 18px 18px 18px 22px;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 26px 9px 20px;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.14s;
  box-shadow: 0 2px 8px rgba(49,109,91,0.08);
}
.cookie-btn.accept {
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--primary-dark);
  color: #E2DBC7;
}
.cookie-btn.reject {
  background: #fff;
  color: #316D5B;
  border: 2px solid var(--primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F0EEE9;
  color: #195238;
}
.cookie-btn.settings {
  background: #E2DBC7;
  color: #316D5B;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #B1A277;
  color: #fff;
}

/* Cookie modal overlay */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(49,109,91,0.19);
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.2s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 30px 16px 30px 30px/ 26px 20px 30px 30px;
  box-shadow: 0 4px 30px rgba(49,109,91,0.18);
  width: 94vw;
  max-width: 400px;
  padding: 36px 32px 30px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInModal .28s cubic-bezier(.11,.17,.88,.85);
}
.cookie-modal-close {
  background: transparent;
  color: #316D5B;
  border: none;
  font-size: 2.2rem;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  z-index: 10023;
}
.cookie-modal-dialog h2 {
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-family: 'Nunito', Arial, sans-serif;
  color: #316D5B;
}
/* Cookie toggle switches */
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-toggle {
  appearance: none;
  width: 42px;
  height: 24px;
  border-radius: 14px;
  background: #E2DBC7;
  position: relative;
  outline: none;
  transition: background 0.13s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--primary);
}
.cookie-toggle::before {
  content: '';
  display: block;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(49,109,91,0.15);
  width: 20px;
  height: 20px;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.13s;
}
.cookie-toggle:checked::before {
  left: 20px;
}
.cookie-category label {
  font-size: 1rem;
  color: #314132;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* =========================================================
   ORGANIC VISUAL EFFECTS
   ========================================================= */
section, .card, .feature-card, .testimonial-card, .cta,
footer, .cookie-banner, .cookie-modal-dialog {
  box-shadow: 0 3px 14px var(--shadow);
}

.card, .feature-card, .testimonial-card {
  border-radius: 18px 32px 22px 26px / 18px 30px 22px 32px;
}

section, .features, .testimonials, .testimonials-gallery, .about-preview, .contact-preview, .cta-banner {
  border-radius: 28px;
  background-repeat: no-repeat;
}

.card::before, .feature-card::before, .testimonial-card::before {
  /* Subtle organic blob for decor */
  content: '';
  position: absolute;
  z-index: 1;
  top: -24px;
  right: -22px;
  width: 90px;
  height: 60px;
  background: radial-gradient(ellipse 60% 100% at top left, #92CAB322 60%, transparent 100%);
  pointer-events: none;
  filter: blur(7px);
  opacity: 0.4;
}

/* Only decorative, does not overlap content */
.card *, .feature-card *, .testimonial-card * {
  position: relative;
  z-index: 2;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 1200px) {
  .container {
    max-width: 99vw;
  }
  .testimonials-wrapper, .content-wrapper, .service-features-grid, .service-cards-grid {
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .content-wrapper, .testimonials-wrapper, .service-features-grid, .service-cards-grid {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .feature-card {
    min-width: 60vw;
    max-width: 97vw;
  }
}
@media (max-width: 768px) {
  .hero .container, .section, section, .features, .testimonials {
    padding: 28px 8px;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.16rem; }
  .card, .feature-card, .testimonial-card {
    padding: 20px 12px 16px 14px;
    min-width: unset;
  }
  .footer-nav {
    gap: 8px;
  }
  .service-features-grid, .service-cards-grid {
    gap: 18px;
  }
  .pricing-table th, .pricing-table td {
    padding: 9px 6px;
    font-size: 0.97rem;
  }
}

/* ======================
   MISC. STYLES
   ====================== */
::-webkit-scrollbar {
  width: 8px;
  background: #E2DBC7;
}
::-webkit-scrollbar-thumb {
  background: #B1A277;
  border-radius: 8px;
}

/* FAQ/Advice Section Special */
.faq ul li {
  background: #F6F9F7;
  border-left: 4px solid #316D5B;
  border-radius: 14px;
  padding: 10px 14px 10px 20px;
  color: #314132;
  margin-bottom: 14px;
}
.expert-tips {
  border-left: 6px solid #92CAB3;
  background: #fffefe;
  border-radius: 20px;
  padding: 14px 22px;
  margin-bottom: 14px;
}

/* ==============================
 ORGANIC SHAPES: top corners
 =============================== */
section.about-story, section.our-values, .about-booking, .contact-options, .about-visit {
  background: #F6F9F7;
  border-radius: 32px 80px 32px 32px / 22px 42px 26px 38px;
}

/* =========================
 TABLE OF CONTENTS Block
 ========================== */
.privacy-policy, .gdpr-info, .cookie-policy, .terms-of-use {
  background: #F6F9F7;
  border-radius: 28px;
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Thank you and next steps */
.thank-you, .next-steps {
  background: #E2DBC7;
  border-radius: 28px;
}

/* STEP LISTS / OL */
.about-booking ol {
  padding-left: 32px;
  margin-bottom: 18px;
}
.about-booking ol li {
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .about-booking ol { padding-left: 18px; }
}

/* ===================
 UTILITY CLASSES
 ==================== */
.d-none, .hidden { display: none !important; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* ==========================
 GENERAL FORM STYLES (if used)
 ========================== */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 13px;
  border: 1.5px solid #B1A277;
  padding: 12px 14px;
  background: #F6F9F7;
  margin-bottom: 18px;
  color: #314132;
  transition: border-color .18s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}

/* =============================
 MICRO-INTERACTIONS & ANIMATION
 ============================== */
.card, .feature-card, .testimonial-card, .cta, .cookie-btn {
  transition: box-shadow .21s cubic-bezier(.34,.91,.59,1.15), background 0.23s, transform 0.13s;
}

@media (hover: hover) and (pointer: fine) {
  .cta:hover, .cta:focus, .feature-card:hover, .testimonial-card:hover, .cookie-btn:hover {
    filter: brightness(1.07);
  }
}

/* ============================
 FLEXBOX SPACING (MANDATORY!)
 ============================ */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .card-grid, .service-features-grid, .service-cards-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature-card, .testimonial-card {
  margin-bottom: 20px;
  position: relative;
}
.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; }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Always sufficient space between cards/sections */
.card, .feature-card, .testimonial-card, .section, section {
  margin-bottom: 20px;
}
.card-container, .card-grid, .service-features-grid, .service-cards-grid, .content-grid, .testimonials-wrapper {
  gap: 24px;
}

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