/* About Section Styles */

.about {
  padding: 12rem 7% 8rem;
  background-color: #fcfcfc;
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23206117' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
  pointer-events: none;
}

.about .section-kicker {
  display: table;
  margin: 0 auto 1.6rem;
  background: rgba(32, 97, 23, 0.08);
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border-radius: 5rem;
  position: relative;
  z-index: 1;
}

.about h2 {
  text-align: center;
  font-size: 4.2rem;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.about h2 span {
  color: var(--primary);
  position: relative;
}

.about h2::after {
  content: '';
  position: absolute;
  bottom: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 12rem;
  height: 0.3rem;
  background: var(--primary-light);
  border-radius: 1rem;
}

/* About Section tagline */
.about .tagline {
  text-align: center;
  font-size: 2rem;
  color: #666;
  margin-bottom: 6rem;
  padding-top: 2rem;
  font-family: var(--heading-font);
  font-weight: 300;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* About Section - plain layout, no card/box around it */
.about .row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  max-width: 130rem;
  margin: 3rem auto 0;
  position: relative;
  z-index: 1;
}

/* ---------- Logo mark: large, plain, no card/frame around it ---------- */
.about .row .about-img {
  flex: 0 0 42%;
  max-width: 42%;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-mark {
  width: 100%;
  max-width: 34rem;
  height: auto;
  display: block;
}

/* ---------- Content column ---------- */
.about .row .content {
  flex: 0 0 58%;
  max-width: 58%;
  padding: 5rem 5rem 4rem;
}

.about .row .content h3 {
  font-size: 3.2rem;
  margin-bottom: 2.5rem;
  color: var(--primary);
  position: relative;
  padding-bottom: 1.5rem;
  font-family: var(--heading-font);
}

.about .row .content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8rem;
  height: 0.4rem;
  background: var(--primary-light);
  border-radius: 1rem;
}

.about .row .content h4 {
  font-size: 2.2rem;
  margin: 2.8rem 0 1.5rem;
  color: var(--primary-dark);
  font-family: var(--heading-font);
}

.about .row .content p {
  margin-bottom: 2rem;
  font-size: 1.7rem;
  line-height: 1.8;
  color: #555;
  text-align: left;
}

.about .row .content p strong {
  color: var(--primary-dark);
  font-weight: 600;
}

/* Advantage checklist - two columns on desktop for easier scanning */
.about .row .content .advantage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 2rem;
  margin: 2rem 0 2.5rem;
  padding-left: 0;
}

.about .row .content .advantage-list li {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #444;
  position: relative;
  padding-left: 3.4rem;
  list-style: none;
}

.about .row .content .advantage-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: -0.1rem;
  width: 2.4rem;
  height: 2.4rem;
  background-color: rgba(32, 97, 23, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.about .row .content .advantage-list li::after {
  content: '✓';
  position: absolute;
  left: 0.65rem;
  top: 0.1rem;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.3rem;
}

/* ---------- Stat strip: the one place these numbers live now that
   the hero's own stats bar was removed, so it's given real weight. ---------- */
.about-stats-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem 10rem;
  max-width: 130rem;
  margin: 6rem auto 0;
  position: relative;
  z-index: 1;
}

.about-stat {
  text-align: center;
}

.about-stat .stat-number {
  display: block;
  font-size: 4.6rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--heading-font);
  line-height: 1.1;
}

.about-stat-label {
  display: block;
  font-size: 1.5rem;
  color: #666;
  margin-top: 0.6rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 991px) {
  .about .row {
    flex-wrap: wrap;
  }

  .about .row .about-img,
  .about .row .content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about .row .about-img {
    padding: 4rem 3rem 6rem;
  }

  .about .tagline {
    max-width: 95%;
    font-size: 1.8rem;
  }

  .about .row .content .advantage-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about h2 {
    font-size: 3.6rem;
  }

  .about .row .content h3 {
    font-size: 2.8rem;
  }

  .about .row .content h4 {
    font-size: 2rem;
  }

  .about .row .content p {
    font-size: 1.6rem;
  }

  .about-stat {
    flex: 1 1 45%;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 8rem 7% 5rem;
  }

  .about .row .content {
    padding: 3.5rem 3rem;
  }

  .about .row .content h3 {
    font-size: 2.5rem;
  }

  .about .row .content h4 {
    font-size: 1.8rem;
  }

  .about h2 {
    font-size: 3.2rem;
  }

  .about .tagline {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }

  .about-logo-mark {
    max-width: 22rem;
  }
}
