/* CSS Variables for About Section */
:root {
  --aws-darker: #0a0e13;
  --aws-orange: #ff9900;
  --text-white: #ffffff;
  --text-gray: #d1d5db;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border-color: rgba(255, 255, 255, 0.1);
}

/* About Section */
section#about {
  padding: 5rem 0;
  background: #0a0e13;
  margin-top: 0;
}

section#about h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

section#about > .container > p {
  text-align: center;
  color: #d1d5db;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.about-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.about-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ff9900;
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

.about-box h3 {
  color: #ff9900;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.about-box p {
  color: #d1d5db;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  section#about {
    padding: 3rem 0;
  }
  
  section#about h2 {
    font-size: 2rem;
  }
  
  .about-flex {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}