/* About Section */
.about-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 5rem 1.5rem;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(68, 164, 167, 0.1) 0%, rgba(68, 164, 167, 0.05) 100%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

/* Container */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Text Content */
.about-text {
  order: 2;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #44a4a7, transparent);
}

.label-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #44a4a7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title .highlight {
  color: #44a4a7;
  position: relative;
  display: inline-block;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(68, 164, 167, 0.15);
  z-index: -1;
}

.intro-text {
  font-size: 1.40rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 2.5rem;
  padding-left: 1rem;
  border-left: 3px solid #44a4a7;
}

.content-block p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.40rem;
}

/* Focus Areas */
.focus-areas {
  margin: 3rem 0;
}

.focus-title {
  font-size: 1.50rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.focus-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #44a4a7, #7bd1d4);
  border-radius: 2px;
}

.focus-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.focus-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.focus-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #44a4a7;
}

.focus-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #44a4a7, #7bd1d4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.focus-icon svg {
  width: 24px;
  height: 24px;
}

.focus-content h4 {
  font-size: 1.60rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.focus-content p {
  color: #64748b;
  line-height: 1.6;
  font-size: 1.40rem;
  margin: 0;
}

/* Region Highlight */
.region-highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(68, 164, 167, 0.1), rgba(123, 209, 212, 0.05));
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(68, 164, 167, 0.2);
  margin-top: 3rem;
}

.region-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.region-text p {
  color: #0f172a;
  line-height: 1.7;
  margin: 0;
  font-size: 1.40rem;
}

.region-text strong {
  color: #44a4a7;
}

/* Image */
.about-image {
  order: 1;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.image-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-frame:hover img {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}

.image-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #44a4a7;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

/* Responsive Design */
@media (min-width: 768px) {
  .about-section {
    padding: 6rem 2rem;
  }
  
  .section-title {
    font-size: 3.25rem;
  }
  
  .image-stats {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  
  .about-text {
    order: 1;
  }
  
  .about-image {
    order: 2;
  }
  
  .image-frame img {
    height: 500px;
  }
  
  .section-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1280px) {
  .about-container {
    gap: 6rem;
  }
}