body {
  background-color: #131d4f;
}
.about-container {
  max-width: 800px;
  margin: 6rem auto 2rem auto;
  padding: 2rem;
  background: rgba(45, 49, 66, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(78, 205, 196, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.about-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: linear-gradient(
    135deg,
    rgba(78, 205, 196, 0.1),
    rgba(255, 107, 107, 0.1)
  );
  border-radius: 8px;
  border: 1px dashed #4ecdc4;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #4ecdc4;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero .subtitle {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: #fffdd0;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-section {
  margin-bottom: 3rem;
  padding: 1.5rem 0;
}

.about-section h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #4ecdc4;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(78, 205, 196, 0.3);
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-section p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.7;
  color: #fffdd0;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-section ul {
  list-style: none;
  padding-left: 0;
}

.about-section li {
  background: rgba(78, 205, 196, 0.1);
  margin-bottom: 0.8rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #4ecdc4;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: #fffdd0;
  transition: all 0.3s ease;
}

.about-section li:hover {
  background: rgba(78, 205, 196, 0.2);
  transform: translateX(5px);
}

.about-section li strong {
  color: #4ecdc4;
  font-weight: bold;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-card {
  background: rgba(35, 41, 70, 0.6);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(78, 205, 196, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #4ecdc4;
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-title {
  color: #4ecdc4;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: #fffdd0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.cta-section {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #4ecdc4, #44a6b5);
  border-radius: 12px;
  margin: 3rem 0;
  color: #2d3142;
}

.cta-section h2 {
  color: #2d3142;
  margin-bottom: 1rem;
  border: none;
  padding: 0;
}

.cta-section p {
  color: #2d3142;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: #2d3142;
  color: #4ecdc4;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #2d3142;
}

.cta-button:hover {
  background: transparent;
  color: #2d3142;
  border-color: #2d3142;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(45, 49, 66, 0.3);
}

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

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #ff6b6b;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #fffdd0;
  opacity: 0.8;
}

.footer-about {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(78, 205, 196, 0.3);
  color: #b0b0b0;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-container {
    margin: 5rem 1rem 2rem 1rem;
    padding: 1.5rem;
  }

  .about-hero {
    padding: 1.5rem 1rem;
  }

  .about-section {
    margin-bottom: 2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .about-container {
    margin: 4rem 0.5rem 1rem 0.5rem;
    padding: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
