.about-section {
  background: rgba(255, 255, 174, 0.95);
  margin: 0 auto 40px;
  max-width: 95%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(35, 30, 0, 0.2);
  overflow: hidden;
}

.about-header {
  background: linear-gradient(135deg, #0d5400, #ff37bb);
  color: white;
  padding: 40px;
  text-align: center;
}

.about-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.about-body {
  padding: 50px 40px;
}

.about-content h3 {
  color: #231e00;
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.about-content p {
  color: #231e00;
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 1.1rem;
}

.features-section {
  margin: 50px 0;
}

.features-section h3 {
  color: #231e00;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: #ffa295;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(35, 30, 0, 0.1);
  transition: transform 0.3s ease;
  border-left: 5px solid #0d5400;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(35, 30, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0d5400, #231e00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 35px;
  color: #ffffae;
}

.feature-card h4 {
  color: #231e00;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  color: #231e00;
  line-height: 1.6;
  margin: 0;
}

.values-section {
  background: linear-gradient(
    135deg,
    rgba(255, 162, 149, 0.3),
    rgba(255, 255, 174, 0.3)
  );
  border-radius: 15px;
  padding: 40px;
  margin: 50px 0;
  text-align: center;
}

.values-section h3 {
  color: #0d5400;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.value-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(35, 30, 0, 0.1);
}

.value-item h4 {
  color: #ff37bb;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.value-item p {
  color: #231e00;
  font-size: 14px;
  margin: 0;
}

.back-button {
  display: inline-block;
  background: linear-gradient(135deg, #0d5400, #231e00);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.back-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 84, 0, 0.3);
}

.disclaimer {
  background: rgba(255, 162, 149, 0.1);
  padding: 40px 0;
  text-align: center;
  color: #ffffae;
  border-top: 1px solid rgba(255, 255, 174, 0.2);
}

.disclaimer p {
  font-size: 14px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

.footer {
  background: rgba(35, 30, 0, 0.9);
  color: #ffffae;
  padding: 40px 0 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffa295;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffae;
}

.footer-badge {
  margin: 20px 0;
}

.footer-copyright {
  font-size: 12px;
  color: #ff37bb;
  border-top: 1px solid #0d5400;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .about-section {
    margin: 0 20px 40px;
  }

  .about-body {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 360px) {
  .header-content {
    padding: 15px 15px;
  }

  .about-section {
    margin: 0 15px 40px;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .about-header {
    padding: 30px 20px;
  }

  .feature-card {
    padding: 25px 20px;
  }
}
