/* About Page Styles */
.about-page-container {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  color: #212121;
  line-height: 1.6;
}

/* Page Header (Ant Design style) */
.page-header {
  background: #fff;
  padding: 12px 0 16px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 16px;
}

.page-header-title {
  font-size: 24px;
  font-weight: 600;
  color: #262626;
  margin: 0;
  text-align: left;
  line-height: 1.3;
}

/* Section Container */
.intro-section,
.unesco-section,
.impact-section,
.stories-section {
  padding: 20px 0;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Titles */
.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 12px !important;
  text-align: center;
}

h2.section-title {
  margin-bottom: 1.5rem !important;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1976d2 0%, #42a5f5 100%);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.page-divider {
  width: 90%;
  max-width: 1100px;
  height: 1px;
  background: #e0e0e0;
  margin: 0 auto;
}

.lead-text {
  font-size: 16px;
  line-height: 1.6;
  color: #4c5054;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 20px;
}

/* Intro Cards Grid */
.intro-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.intro-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.intro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(25, 118, 210, 0.15);
}

.intro-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.intro-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.intro-card:hover .intro-card-image img {
  transform: scale(1.05);
}

.intro-card-content {
  padding: 32px 24px;
  text-align: center;
}

.intro-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 12px;
}

.intro-card p {
  font-size: 16px;
  color: #4c5054;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
  padding: 30px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.stat-card {
  background: white;
  padding: 48px 32px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1976d2 0%, #42a5f5 100%);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(25, 118, 210, 0.2);
}

.stat-number {
  font-size: 64px;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 16px;
  line-height: 1;
}

.stat-label {
  font-size: 18px;
  color: #212121;
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-description {
  font-size: 14px;
  color: #6c757d;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-left: 6px solid #1976d2;
  padding: 24px;
  margin: 20px 0 0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.1);
}

.highlight-box h3 {
  font-size: 28px !important;
  font-weight: 700;
  color: #1565c0;
  margin-bottom: 20px;
  text-align: left;
}

.highlight-box p {
  color: #212121;
  line-height: 1.8;
  font-size: 17px;
}

.future-box {
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}

.future-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 20px;
  text-align: left;
}

.future-box p {
  font-size: 17px;
  color: #4c5054;
  line-height: 1.8;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  padding: 40px 40px;
  text-align: center;
  margin-top: 0;
  color: white;
}

.cta-section h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.cta-description {
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #1976d2;
  padding: 16px 40px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  background: #f5f5f5;
  color: #1565c0;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  transform: translateY(-2px);
}

/* Two Column Layout */
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.benefits-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefits-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(25, 118, 210, 0.15);
}

.benefits-card h3 {
  color: #1976d2;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: left;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  padding: 12px 0 12px 8px;
  color: #4c5054;
  font-size: 16px;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li::before {
  content: "";
  color: #4caf50;
  font-weight: bold;
  margin-right: 12px;
}

/* Story Cards Grid */
.story-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.story-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(25, 118, 210, 0.15);
}

.story-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.story-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-card:hover .story-card-image img {
  transform: scale(1.05);
}

.story-card-content {
  padding: 32px 24px;
}

.story-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 16px;
}

.story-card p {
  font-size: 16px;
  color: #4c5054;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .intro-section,
  .unesco-section,
  .impact-section,
  .stories-section {
    padding: 40px 0;
  }

  .section-container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 26px;
  }

  .lead-text {
    font-size: 18px;
  }

  .intro-cards-grid,
  .story-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stat-number {
    font-size: 52px;
  }

  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .cta-section h3 {
    font-size: 28px;
  }

  .cta-description {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cta-button {
    width: 100%;
  }
}
