/* ===== About Page Styles ===== */
.enhanced-about {
  min-height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  text-align: center;
}

/* Targeted centering for specific elements */
.enhanced-about h1,
.enhanced-about h2,
.enhanced-about h3,
.enhanced-about h4,
.enhanced-about p,
.enhanced-about div {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem !important; /* Reduced from 2rem */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ===== REDUCED HERO SECTION ===== */
.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.75rem 0 !important; /* Reduced: ~12px top/bottom */
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Add subtle pattern like services page */
.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><path d="M30,5 L55,30 L30,55 L5,30 Z" stroke="white" stroke-width="1" fill="none" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.hero-title {
  font-size: clamp(1.5rem, 3vw, 2rem) !important; /* Reduced from 3.5rem */
  font-weight: 800;
  margin-bottom: 0.125rem !important; /* Reduced margin */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2 !important; /* Tight line height */
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: clamp(0.875rem, 1.8vw, 1.125rem) !important; /* Reduced from 1.4rem */
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.3 !important; /* Tight line height */
  position: relative;
  z-index: 1;
}

/* Main Content */
.about-main-content {
  padding: 3rem 0; /* Reduced from 4rem */
  width: 100%;
}

/* Mission Statement */
.mission-statement {
  margin-bottom: 3rem; /* Reduced from 4rem */
  padding: 2rem 1.5rem; /* Reduced padding */
  background: white;
  border-radius: 15px; /* Slightly smaller radius */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Softer shadow */
  border: 1px solid #e9ecef;
  max-width: 900px;
}

.mission-icon {
  font-size: 3rem; /* Reduced from 4rem */
  margin-bottom: 1rem; /* Reduced from 1.5rem */
}

.mission-statement h2 {
  font-size: 1.75rem; /* Reduced from 2.2rem */
  color: #2c3e50;
  margin-bottom: 1rem; /* Reduced from 1.5rem */
  font-weight: 700;
}

.mission-text {
  font-size: 1.125rem; /* Reduced from 1.3rem */
  line-height: 1.6; /* Tighter line height */
  color: #6c757d;
  max-width: 700px;
}

/* Story Section */
.about-story {
  margin-bottom: 3rem; /* Reduced from 4rem */
  max-width: 900px;
}

.story-content h3 {
  font-size: 1.75rem; /* Reduced from 2rem */
  color: #2c3e50;
  margin-bottom: 1.5rem; /* Reduced from 2rem */
  font-weight: 600;
}

.story-content p {
  font-size: 1.125rem; /* Reduced from 1.2rem */
  line-height: 1.7; /* Slightly tighter */
  color: #495057;
  margin-bottom: 1.5rem; /* Reduced from 2rem */
  max-width: 800px;
}

.story-content strong {
  color: #2c3e50;
  font-weight: 600;
}

/* Values Section */
.values-section {
  margin-bottom: 3rem; /* Reduced from 4rem */
  max-width: 1200px;
}

.values-section h3 {
  font-size: 1.75rem; /* Reduced from 2rem */
  color: #2c3e50;
  margin-bottom: 2rem; /* Reduced from 3rem */
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; /* Reduced from 2rem */
  width: 100%;
}

.value-card {
  background: white;
  padding: 2rem 1.5rem; /* Reduced padding */
  border-radius: 12px; /* Slightly smaller */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Softer shadow */
  transition: all 0.3s ease;
  border: 1px solid #f1f3f4;
}

.value-card:hover {
  transform: translateY(-5px); /* Reduced from -10px */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12); /* Softer hover shadow */
}

.value-icon {
  font-size: 2.5rem; /* Reduced from 3rem */
  margin-bottom: 1rem; /* Reduced from 1.5rem */
}

.value-card h4 {
  font-size: 1.25rem; /* Reduced from 1.4rem */
  color: #2c3e50;
  margin-bottom: 0.75rem; /* Reduced from 1rem */
  font-weight: 600;
}

.value-card p {
  color: #6c757d;
  line-height: 1.5; /* Tighter line height */
  font-size: 0.95rem; /* Reduced from 1rem */
}

/* Workshop Section (New) */
.workshop-section {
  margin: 2rem 0; /* Reduced spacing */
  padding: 1.5rem; /* Reduced padding */
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px; /* Smaller radius */
  border: 1px solid #e2e8f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.workshop-section h3 {
  text-align: center;
  font-size: 1.5rem; /* Reduced size */
  margin-bottom: 1rem; /* Reduced spacing */
  color: #2c3e50;
}

.workshop-content p {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem; /* Reduced spacing */
  color: #2c3e50;
  text-align: center;
}

.workshop-content ul {
  list-style: none;
  padding-left: 0;
  max-width: 800px;
  margin: 0 auto;
}

.workshop-content li {
  padding: 0.5rem 0; /* Reduced padding */
  padding-left: 1.5rem; /* Reduced spacing */
  position: relative;
  color: #495057;
  line-height: 1.5; /* Tighter line height */
  font-size: 0.95rem; /* Slightly smaller */
}

.workshop-content li::before {
  content: '✓';
  color: #667eea;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Commitment Section */
.commitment-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem 1.5rem; /* Reduced padding */
  border-radius: 15px; /* Smaller radius */
  margin: 2rem auto; /* Reduced margin */
  max-width: 900px;
}

.commitment-content h3 {
  font-size: 1.75rem; /* Reduced from 2rem */
  margin-bottom: 1rem; /* Reduced from 1.5rem */
  font-weight: 600;
}

.commitment-content p {
  font-size: 1.125rem; /* Reduced from 1.2rem */
  line-height: 1.6; /* Tighter line height */
  opacity: 0.9;
  max-width: 700px;
}

/* Enhanced CTA */
.about-cta-enhanced {
  background: #2c3e50;
  color: white;
  padding: 3rem 0; /* Reduced from 4rem */
  width: 100%;
}

.about-cta-enhanced h2 {
  font-size: 2rem; /* Reduced from 2.5rem */
  margin-bottom: 0.75rem; /* Reduced spacing */
  font-weight: 700;
}

.about-cta-enhanced p {
  font-size: 1.125rem; /* Reduced from 1.3rem */
  margin-bottom: 2rem; /* Reduced spacing */
  opacity: 0.9;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 1rem; /* Reduced from 1.5rem */
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 0.875rem 2rem; /* Reduced padding */
  border-radius: 8px; /* Smaller radius (more square) */
  text-decoration: none;
  font-size: 1rem; /* Reduced from 1.1rem */
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 180px; /* Slightly smaller */
}

.cta-btn.primary {
  background: #e74c3c;
  color: white;
}

.cta-btn.primary:hover {
  background: #c0392b;
  transform: translateY(-2px); /* More subtle than scale */
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-btn.secondary:hover {
  background: white;
  color: #2c3e50;
  transform: translateY(-2px); /* More subtle than scale */
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  /* Hero Section - Mobile */
  .about-hero {
    padding: 0.5rem 0 !important; /* Even smaller on mobile */
  }

  .hero-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important;
    margin-bottom: 0.0625rem !important;
  }

  .hero-subtitle {
    font-size: clamp(0.75rem, 1.5vw, 1rem) !important;
  }

  .container {
    padding: 0 0.75rem !important; /* Even smaller side padding */
  }

  .mission-statement {
    padding: 1.5rem 1rem; /* Reduced padding */
    margin: 1.5rem 0.5rem; /* Reduced margin */
  }

  .mission-icon {
    font-size: 2.5rem; /* Smaller icon */
  }

  .mission-statement h2 {
    font-size: 1.5rem; /* Smaller heading */
  }

  .mission-text {
    font-size: 1rem; /* Smaller text */
  }

  .story-content p {
    font-size: 1rem; /* Smaller text */
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1rem; /* Reduced gap */
  }

  .value-card {
    padding: 1.5rem 1rem; /* Reduced padding */
  }

  .workshop-section {
    margin: 1.5rem 0.5rem;
    padding: 1.25rem 1rem;
  }

  .workshop-section h3 {
    font-size: 1.25rem;
  }

  .workshop-content li {
    font-size: 0.9rem;
    padding-left: 1.25rem;
  }

  .commitment-section {
    margin: 1.5rem 0.5rem;
    padding: 1.5rem 1rem;
  }

  .about-cta-enhanced h2 {
    font-size: 1.75rem; /* Smaller heading */
  }

  .about-cta-enhanced p {
    font-size: 1rem; /* Smaller text */
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem; /* Reduced gap */
  }

  .cta-btn {
    width: 100%;
    max-width: 250px; /* Smaller max width */
    padding: 0.75rem 1.5rem; /* Smaller padding */
  }
}

/* Remove the aggressive space reduction section since we've properly reduced sizes */