/* General Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* About Hero Section */
  .about-hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom right, #111827, #1f2937);
    background: #4f46e5;
    color: white;
  }
  
  @media (min-width: 768px) {
    .about-hero {
      padding-top: 8rem;
      padding-bottom: 6rem;
    }
  }
  
  .hero-content {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }
  
  @media (min-width: 768px) {
    .hero-title {
      font-size: 3rem;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 4rem;
    }
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
  }
  
  @media (min-width: 768px) {
    .hero-subtitle {
      font-size: 1.25rem;
    }
  }
  
  .gradient-text {
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .stats-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .stats-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .stat-card {
    background-color: rgba(31, 41, 55, 0.5);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
  }
  
  .stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: #10b981;
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    color: #d1d5db;
  }
  
  /* Company Story Section */
  .company-story {
    padding: 4rem 0;
    background-color: white;
  }
  
  @media (min-width: 768px) {
    .company-story {
      padding: 6rem 0;
    }
  }
  
  .story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  @media (min-width: 1024px) {
    .story-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .story-image {
    position: relative;
  }
  
  .image-decor {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 6rem;
    height: 6rem;
    background-color: #e0f2fe;
    border-radius: 0.5rem;
  }
  
  .team-image {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
  }
  
  .story-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }
  
  .story-text {
    color: #4b5563;
    margin-bottom: 1rem;
  }
  
  .vision-section, .mission-section {
    margin-top: 2rem;
  }
  
  .vision-title, .mission-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .vision-text, .mission-text {
    color: #4b5563;
  }
  
  /* Animation Styles */
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-up.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .fade-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-left.animate {
    opacity: 1;
    transform: translateX(0);
  }
  
  .fade-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-right.animate {
    opacity: 1;
    transform: translateX(0);
  }

