/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 04 2026 | 04:19:31 */
.about-section {
  padding: 5rem 2rem;
  background-color: var(--color-white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* Typography styles */
.about-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-green);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

/* Subtle modern underline accent */
.about-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 4px;
  background-color: var(--color-gold);
  border-radius: 2px;
}

.about-lead {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-gray-light);
  margin: 0;
}

/* Image Container & Interactive Hover Effects */
.about-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
  border-radius: 24px; /* Updated modern 7% replacement */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Dynamic modern hover interaction */
.image-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(46, 114, 47, 0.15); /* Soft deep green glow shadow */
}

.image-wrapper:hover .about-image {
  transform: scale(1.03);
}

/* Responsive Grid Adjustments for Tablet and Desktop */
@media (min-width: 768px) {
  .about-section {
    padding: 7rem 4rem;
  }
  
  .about-container {
    grid-template-columns: 1fr 1fr; /* Turns into a balanced side-by-side layout */
    gap: 4rem;
  }
  
  .about-title {
    font-size: 2.75rem;
  }
  
  .about-lead {
    font-size: 1.5rem;
  }
}