/* About Section – Matching Template */
.about-section {
  padding: 80px 0;
  background: var(--bg-light, #f8fafc);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Content Styles */
.about-content {
  max-width: 600px;
}

.section-badge {
  display: inline-block;
  background: var(--light-green, #e8f5e9);
  color: var(--primary-green, #1a5c3a);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-green, #1a5c3a);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.section-subtitle {
  color: var(--text-light, #4a4a68);
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.about-list li {
  padding: 5px 0 5px 30px;
  position: relative;
  color: var(--text-light, #4a4a68);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green, #1a5c3a);
  font-weight: bold;
  font-size: 1.2rem;
  }

.about-btn {
  background: var(--primary-green, #1a5c3a);
  color: var(--white, #ffffff);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  }

.about-btn:hover {
  background: var(--dark-green, #0d3d26);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }

.about-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.about-btn:hover i {
  transform: translateX(5px);
}

/* Image Styles */
/*
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;

  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-image::before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: var(--light-green, #e8f5e9);
  border-radius: 15px;
  z-index: -1;
} */

.about-image {
  position: relative;
  aspect-ratio: 4 / 3; /* Adjust as needed: 1/1 for square, 16/9 for widescreen */
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the container without distortion */
  border-radius: 15px;
}

.about-image::before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: var(--light-green);
  border-radius: 15px;
  z-index: -1;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-content {
    order: 2;
    max-width: 100%;
  }
  .about-image {
    order: 1;
  }
  .about-image::before {
    width: 150px;
    height: 150px;
    bottom: -20px;
    left: -20px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
  .about-list li {
    font-size: 0.95rem;
  }
  .about-image::before {
    width: 100px;
    height: 100px;
  }
}