* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 20px;
}

.about-container {
  margin-top: 60px;
}

/* Section Divider */

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #002145, #0066cc);
  margin: 20px auto 40px;
  border-radius: 2px;
}

/* Founding Story Section */

.founding-story {
  padding: 80px 0;
  background-color: #fff;
  border-radius: 32px;
}

.story-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #002145;
  text-align: center;
  margin-bottom: 20px;
}

.story-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.story-text p {
  margin-bottom: 25px;
}

.founding-date {
  background: linear-gradient(135deg, #002145, #0066cc);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-top: 30px;
}

/* Team Section */

.team-section {
  /* padding: 80px 0; */
  margin-top: 60px;
}

.team-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #002145;
  text-align: center;
  margin-bottom: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 60px;
}

.team-member {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 33, 69, 0.1);
}

.team-member:nth-child(even) {
  grid-template-columns: 1fr 300px;
}

.team-member:nth-child(even) .member-image {
  order: 2;
}

.team-member:nth-child(even) .member-info {
  order: 1;
}

.member-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.member-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #002145;
  margin-bottom: 10px;
}

.member-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #0066cc;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-bio {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* Why Choose Us Section */

.why-choose-us {
  /* padding: 80px 0; */
  margin-bottom: 60px;
  margin-top: 60px;
  border-radius: 32px;
}

.why-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #002145;
  text-align: center;
  margin-bottom: 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

@media screen and (max-width: 1400px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-item {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 33, 69, 0.1);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.benefit-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #002145;
  margin-bottom: 15px;
}

.benefit-item p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Design */

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .team-member,
  .team-member:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .team-member:nth-child(even) .member-image,
  .team-member:nth-child(even) .member-info {
    order: initial;
  }
  .member-image {
    max-width: 250px;
    margin: 0 auto;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .founding-story,
  .team-section,
  .why-choose-us {
    /* padding: 60px 0; */
  }
  .story-header h2,
  .team-header h2,
  .why-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 0;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .container {
    padding: 0 15px;
  }
  .team-member,
  .benefit-item {
    padding: 30px 20px;
  }
}
