:root {
  --sandstone-white: #F4F2EE;
  --eucalyptus-green: #4A7C59;
  --bush-olive: #7A9B6B;
  --terracotta: #C97D60;
  --sage-green: #9BAF8A;
  --soil-brown: #5C4636;
  --deep-charcoal: #2F2F2F;
  --accent-gold: #D4A574;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --font-size-xs: 0.7rem;
  --font-size-sm: 0.8rem;
  --font-size-base: 0.9rem;
  --font-size-lg: 1rem;
  --font-size-xl: 1.15rem;
  --font-size-2xl: 1.35rem;
  --font-size-3xl: 1.65rem;
  --font-size-4xl: 2rem;
  --font-size-5xl: 2.5rem;
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --shadow-sm: 0 1px 2px rgba(47, 47, 47, 0.1);
  --shadow-md: 0 4px 6px rgba(47, 47, 47, 0.1);
  --shadow-lg: 0 10px 15px rgba(47, 47, 47, 0.1);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--deep-charcoal);
  background-color: var(--sandstone-white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--deep-charcoal);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-size-3xl);
}

h2 {
  font-size: var(--font-size-2xl);
}

h3 {
  font-size: var(--font-size-xl);
}

h4 {
  font-size: var(--font-size-lg);
}

h5 {
  font-size: var(--font-size-base);
}

h6 {
  font-size: var(--font-size-sm);
}

p {
  margin-bottom: var(--space-md);
  max-width: 65ch;
}

a {
  color: var(--eucalyptus-green);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--bush-olive);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
  
  h1 {
    font-size: var(--font-size-2xl);
  }
  
  h2 {
    font-size: var(--font-size-xl);
  }
  
  h3 {
    font-size: var(--font-size-lg);
  }
  
  .container {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
  
  h1 {
    font-size: var(--font-size-xl);
  }
  
  h2 {
    font-size: var(--font-size-lg);
  }
  
  h3 {
    font-size: var(--font-size-base);
  }
  
  div[style*="grid-template-columns"],
  section div[style*="grid-template-columns"],
  .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr !important;
  }
}

.header {
  position: relative;
  background: linear-gradient(to bottom, rgba(244, 242, 238, 0.98), rgba(244, 242, 238, 0.95));
  backdrop-filter: blur(10px);
  padding: var(--space-sm) 0;
  z-index: 1000;
  border-bottom: 2px solid var(--sage-green);
  box-shadow: 0 2px 8px rgba(74, 124, 89, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--eucalyptus-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  position: relative;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-base);
}

.logo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--eucalyptus-green), var(--sage-green));
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}

.logo:hover {
  color: var(--bush-olive);
}

@media (max-width: 768px) {
  .logo {
    font-size: var(--font-size-base);
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
  align-items: center;
}

.nav-menu li a {
  color: var(--deep-charcoal);
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: all var(--transition-fast);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-sm);
  position: relative;
}

.nav-menu li a:hover {
  color: var(--eucalyptus-green);
  background-color: rgba(74, 124, 89, 0.08);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--font-size-2xl);
  color: var(--deep-charcoal);
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1002;
  position: relative;
}

.menu-toggle.active {
  display: none;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--sandstone-white);
    flex-direction: column;
    padding: var(--space-3xl) var(--space-lg);
    transform: translateY(-100%);
    transition: transform var(--transition-base);
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    align-items: flex-start;
    gap: var(--space-lg);
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .menu-toggle {
    display: block;
  }
  
  .menu-close {
    display: none;
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: none;
    border: none;
    font-size: var(--font-size-2xl);
    color: var(--deep-charcoal);
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 1002;
  }
  
  .nav-menu.active + .menu-close {
    display: block;
  }
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../pictures/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(244, 242, 238, 0.85) 0%, rgba(110, 143, 124, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  max-width: 800px;
}

.hero-content h1 {
  font-size: var(--font-size-4xl);
  color: var(--deep-charcoal);
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 4px rgba(244, 242, 238, 0.5);
  line-height: 1.1;
}

.hero-content p {
  font-size: var(--font-size-lg);
  color: var(--soil-brown);
  margin-bottom: var(--space-lg);
  max-width: none;
}

.hero-animation {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}

.hero-animation::before {
  content: '🌿';
  font-size: 70px;
  display: block;
  animation: rotate 7s linear infinite, pulse 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(74, 124, 89, 0.3));
}

.hero-animation::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 2px solid var(--sage-green);
  border-radius: 50%;
  opacity: 0.3;
  animation: ripple 3s ease-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 65vh;
  }
  
  .hero-content h1 {
    font-size: var(--font-size-2xl);
  }
  
  .hero-content p {
    font-size: var(--font-size-base);
  }
  
  .hero-animation {
    width: 70px;
    height: 70px;
    bottom: 5%;
  }
  
  .hero-animation::before {
    font-size: 50px;
  }
  
  .hero-animation::after {
    width: 90px;
    height: 90px;
  }
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, var(--eucalyptus-green), var(--sage-green));
  color: var(--sandstone-white);
  border: none;
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: var(--space-md);
  text-align: center;
  box-shadow: 0 2px 6px rgba(74, 124, 89, 0.2);
}

.btn:hover {
  background: linear-gradient(135deg, var(--sage-green), var(--bush-olive));
  color: var(--sandstone-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--eucalyptus-green);
  border: 2px solid var(--eucalyptus-green);
}

.btn-secondary:hover {
  background-color: var(--eucalyptus-green);
  color: var(--sandstone-white);
}

.btn-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.section {
  padding: var(--space-3xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title h2 {
  font-size: var(--font-size-2xl);
  color: var(--deep-charcoal);
  font-weight: 700;
}

.section-title p {
  font-size: var(--font-size-base);
  color: var(--soil-brown);
  max-width: 600px;
  margin: var(--space-sm) auto 0;
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-xl) 0;
  }
  
  .section-title h2 {
    font-size: var(--font-size-xl);
  }
  
  .section-title p {
    font-size: var(--font-size-sm);
  }
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 968px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr !important;
  }
  
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  
  section div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  
  .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

.card {
  background-color: var(--sandstone-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(110, 143, 124, 0.1);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-lg);
}

.card h3 {
  color: var(--eucalyptus-green);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-lg);
  font-weight: 700;
}

.card p {
  color: var(--soil-brown);
  margin-bottom: var(--space-md);
}

.feature-box {
  text-align: center;
  padding: var(--space-xl);
}

.feature-box .icon {
  font-size: var(--font-size-4xl);
  color: var(--eucalyptus-green);
  margin-bottom: var(--space-md);
}

.feature-box h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.feature-box p {
  color: var(--soil-brown);
  max-width: none;
}

.contact-section {
  background: linear-gradient(135deg, var(--sandstone-white) 0%, rgba(110, 143, 124, 0.05) 100%);
  border-radius: var(--border-radius-xl);
  padding: var(--space-3xl);
  margin: var(--space-2xl) 0;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--deep-charcoal);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid rgba(110, 143, 124, 0.2);
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-base);
  font-family: inherit;
  transition: border-color var(--transition-fast);
  background-color: var(--sandstone-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--eucalyptus-green);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  font-size: var(--font-size-sm);
}

.map-container {
  margin: var(--space-2xl) 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.pricing-card {
  background-color: var(--sandstone-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(110, 143, 124, 0.1);
  transition: all var(--transition-base);
}

.pricing-card:hover {
  border-color: var(--eucalyptus-green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card h3 {
  color: var(--eucalyptus-green);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-md);
}

.pricing-card .price {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--deep-charcoal);
  margin-bottom: var(--space-sm);
}

.pricing-card .price-period {
  color: var(--soil-brown);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-lg);
}

.pricing-card ul {
  list-style: none;
  margin-bottom: var(--space-xl);
  text-align: left;
}

.pricing-card ul li {
  padding: var(--space-sm) 0;
  color: var(--soil-brown);
  border-bottom: 1px solid rgba(110, 143, 124, 0.1);
}

.pricing-card ul li:before {
  content: '✓';
  color: var(--eucalyptus-green);
  font-weight: bold;
  margin-right: var(--space-sm);
}

@media (max-width: 968px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.footer {
  background-color: var(--deep-charcoal);
  color: var(--sandstone-white);
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: var(--space-3xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.footer-section h4 {
  color: var(--sandstone-white);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-lg);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--space-sm);
}

.footer-section ul li a {
  color: rgba(244, 242, 238, 0.8);
  font-size: var(--font-size-sm);
  transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
  color: var(--sandstone-white);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(244, 242, 238, 0.1);
  font-size: var(--font-size-sm);
  color: rgba(244, 242, 238, 0.6);
}

@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.legal-page {
  padding: var(--space-2xl) 0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-md);
  color: var(--eucalyptus-green);
}

.legal-page h2 {
  font-size: var(--font-size-xl);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--deep-charcoal);
}

.legal-page h3 {
  font-size: var(--font-size-lg);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  color: var(--soil-brown);
}

.legal-page p {
  margin-bottom: var(--space-md);
  color: var(--soil-brown);
  line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
  color: var(--soil-brown);
}

.legal-page li {
  margin-bottom: var(--space-sm);
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
}

.table-wrapper {
  overflow-x: auto;
  margin: var(--space-lg) 0;
}

.legal-page table th,
.legal-page table td {
  padding: var(--space-md);
  border: 1px solid rgba(110, 143, 124, 0.2);
  text-align: left;
}

.legal-page table th {
  background-color: var(--eucalyptus-green);
  color: var(--sandstone-white);
  font-weight: 600;
}

.legal-page table td {
  background-color: var(--sandstone-white);
}

.home-button {
  display: inline-block;
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-xl);
  background-color: var(--eucalyptus-green);
  color: var(--sandstone-white);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-base);
}

.home-button:hover {
  background-color: var(--bush-olive);
  color: var(--sandstone-white);
}

.thank-you-page,
.error-page {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-page h1,
.error-page h1 {
  font-size: var(--font-size-4xl);
  color: var(--eucalyptus-green);
  margin-bottom: var(--space-lg);
}

.thank-you-page p,
.error-page p {
  font-size: var(--font-size-lg);
  color: var(--soil-brown);
  max-width: none;
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .thank-you-page h1,
  .error-page h1 {
    font-size: var(--font-size-3xl);
  }
  
  .thank-you-page p,
  .error-page p {
    font-size: var(--font-size-base);
  }
}

.privacy-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  max-width: 500px;
  background-color: var(--sandstone-white);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  border: 2px solid var(--eucalyptus-green);
  display: none;
}

.privacy-popup.active {
  display: block;
}

.privacy-popup p {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
  color: var(--soil-brown);
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.privacy-popup-buttons .btn {
  margin-top: 0;
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-size-sm);
}

@media (max-width: 768px) {
  .privacy-popup {
    left: var(--space-md);
    right: var(--space-md);
    bottom: var(--space-md);
  }
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.stats-section {
  background: linear-gradient(135deg, var(--eucalyptus-green) 0%, var(--bush-olive) 100%);
  color: var(--sandstone-white);
  padding: var(--space-3xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat-item h3 {
  font-size: var(--font-size-4xl);
  color: var(--sandstone-white);
  margin-bottom: var(--space-sm);
}

.stat-item p {
  font-size: var(--font-size-lg);
  color: rgba(244, 242, 238, 0.9);
  max-width: none;
}

@media (max-width: 968px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.process-section {
  padding: var(--space-3xl) 0;
  background-color: rgba(110, 143, 124, 0.03);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: var(--eucalyptus-green);
  opacity: 0.3;
}

.process-step:last-child::after {
  display: none;
}

.process-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--eucalyptus-green);
  color: var(--sandstone-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin: 0 auto var(--space-md);
}

.process-step h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.process-step p {
  color: var(--soil-brown);
  max-width: none;
  font-size: var(--font-size-sm);
}

@media (max-width: 968px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-step::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

.testimonial-section {
  background-color: rgba(110, 143, 124, 0.05);
  padding: var(--space-3xl) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.testimonial-card {
  background-color: var(--sandstone-white);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--eucalyptus-green);
}

.testimonial-text {
  font-style: italic;
  color: var(--soil-brown);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-base);
}

.testimonial-author {
  font-weight: 600;
  color: var(--deep-charcoal);
  font-size: var(--font-size-sm);
}

@media (max-width: 968px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
