.about {
  padding: 4rem 1rem;
  background-color: #ffffff;
  min-height: 60vh;
}

.about_container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about_title {
  font-size: 3rem;
  font-weight: 700;
  color: #ab4c2f;
  margin-bottom: 3rem;
}

.about_content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about_text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #462521;
}

.about_text-p1 {
  margin-bottom: 1.5rem;
}

.about_text-p1 {
  margin-bottom: 0;
}

.about_stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat_item {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #ffffff;
  border: 2px solid #eca660;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.stat_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #ab4c2f;
}

.stat_number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ab4c2f;
  margin-bottom: 0.5rem;
}

.stat_label {
  font-size: 1.125rem;
  color: #593f3a;
  font-weight: 500;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
  .about {
    padding: 6rem 2rem;
  }

  .about_title {
    font-size: 4rem;
    margin-bottom: 4rem;
  }

  .about_text {
    font-size: 1.375rem;
  }

  .about_content {
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .about_container {
    max-width: 1000px;
  }

  .about_text {
    font-size: 1.5rem;
  }
}
