/* Main Container */
main.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 80vh;
  padding-bottom: 50px;
}

/* Sections */
.about-section {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.about-section:nth-child(odd) {
  background-color: #fffdf1;
}

.about-section:nth-child(even) {
  background-color: #f8f5da;
  border-top: 1px solid rgba(44, 75, 44, 0.1);
  border-bottom: 1px solid rgba(44, 75, 44, 0.1);
}

.container-about {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

/* Typography */
.about-section h2 {
  color: #2c4b2c;
  font-size: 26px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.about-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #2c4b2c;
  border-radius: 2px;
}

.about-section p {
  color: #4a634a;
  font-size: 15px; /* Small and refined */
  line-height: 2; /* Good readability */
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Feature Cards (Why Us, Shipping) */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-direction: row-reverse;
}

.feature-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(44, 75, 44, 0.2);
  border-radius: 12px;
  padding: 20px;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 4px 15px rgba(44, 75, 44, 0.1);
}

.feature-card i {
  font-size: 30px;
  color: #2c4b2c;
}

.feature-card h3 {
  font-size: 16px;
  color: #2c4b2c;
  margin: 0;
}

.feature-card p {
  font-size: 13px;
  line-height: 1.6;
}

/* Shipping Partners Specific */
.shipping-partners {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.partner i {
  font-size: 40px;
  color: #2c4b2c;
}

.partner span {
  font-weight: 600;
  color: #2c4b2c;
  font-size: 14px;
}

/* Animation */
.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay animations */
.about-section:nth-child(1) .container-about {
  animation-delay: 0.1s;
}
.about-section:nth-child(2) .container-about {
  animation-delay: 0.3s;
}
.about-section:nth-child(3) .container-about {
  animation-delay: 0.5s;
}
.about-section:nth-child(4) .container-about {
  animation-delay: 0.7s;
}

/* Responsive */
@media (max-width: 600px) {
  .about-section {
    padding: 40px 15px;
  }

  .about-section h2 {
    font-size: 22px;
  }

  .about-section p {
    font-size: 14px;
    text-align: justify;
    text-align-last: center;
  }

  .feature-card {
    width: 100%;
  }
}
