/* Hero Section Styles */
.about-hero-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 5rem 0 3rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.highlight {
  background: linear-gradient(to right, #065775, #00719b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.8;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  width: 100%;
  height: auto;
}

/* Our Story Section */
.our-story-section {
  padding: 5rem 0;
  background: #ffffff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

.story-content {
  background: #f9fafb;
  padding: 2.5rem;
  border-radius: 20px;
  border-right: 4px solid #0d7ca5;
}

.story-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 1.5rem;
}

.highlight-text {
  color: #01435b;
  font-weight: 600;
}

/* Values Section */
.values-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #065775, #0d7ca5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon i {
  font-size: 2rem;
  color: white;
}

.value-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.value-card p {
  color: #6b7280;
  line-height: 1.7;
}

/* Services Overview */
.services-overview {
  padding: 5rem 0;
  background: white;
}

.service-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateX(-10px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.service-box h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.service-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-box li {
  padding: 0.5rem 0;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-box li i {
  color: #10b981;
  font-size: 1.1rem;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.team-member {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  margin-bottom: 2rem;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.team-member.featured {
  background: linear-gradient(135deg, #065775, #0d7ca5);
  color: white;
  transform: scale(1.05);
}

.team-member.featured:hover {
  transform: scale(1.08) translateY(-10px);
}

.member-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f9fafb;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.team-member.featured .member-image {
  border-color: white;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.member-role {
  color: #6b7280;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.team-member.featured .member-role {
  color: rgba(255, 255, 255, 0.9);
}

.member-specialty {
  font-size: 0.95rem;
  color: #9ca3af;
}

.team-member.featured .member-specialty {
  color: rgba(255, 255, 255, 0.8);
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #065775, #0d7ca5);
  color: white;
}

.stat-box {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #065775, #0d7ca5);
  color: white;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.2);
  color: white;
}

.cta-btn-secondary {
  background: white;
  color: #01435b;
  border: 2px solid #01435b;
}

.cta-btn-secondary:hover {
  background: linear-gradient(135deg, #065775, #0d7ca5);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }
}
