/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.about-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* Company Story */
.about-story {
  padding: 60px 20px;
  background: #f4f4f4;
  text-align: center;
}

.story-container {
  max-width: 900px;
  margin: auto;
}

.story-container h2 {
  font-size: 2.3rem;
  margin-bottom: 25px;
  color: #0077b6;
}

.story-container p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* Mission, Vision, Values */
.about-values {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.value-card {
  background: linear-gradient(135deg, #ff9900, #ffc966);
  color: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media(max-width: 900px) {
  .values-container {
    grid-template-columns: 1fr;
  }
}

.download-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #0056b3;
}

