.about-section {
        padding: 80px 20px;
        max-width: 1200px;
        margin: 0 auto;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
      }

      .about-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .about-header h1 {
        font-size: 3rem;
        color: #2c3e50;
        margin-bottom: 20px;
        font-weight: 700;
        position: relative;
      }

      .about-header h1::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #e74c3c, #f39c12);
        border-radius: 2px;
      }

      .about-header p {
        font-size: 1.2rem;
        color: #7f8c8d;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
      }

      .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        margin-bottom: 80px;
      }

      .about-text {
        padding: 40px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border: 1px solid #f1f2f6;
      }

      .about-text h2 {
        color: #2c3e50;
        font-size: 2.2rem;
        margin-bottom: 25px;
        font-weight: 600;
      }

      .about-text p {
        color: #5a6c7d;
        line-height: 1.8;
        margin-bottom: 20px;
        font-size: 1.1rem;
      }

      .highlight {
        color: #e74c3c;
        font-weight: 600;
      }

      .about-image {
        position: relative;
        text-align: center;
      }

      .about-image img {
        width: 100%;
        max-width: 400px;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
      }

      .about-image img:hover {
        transform: translateY(-10px);
      }

      .stats-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin: 80px 0;
      }

      .stat-card {
        background: white;
        padding: 40px 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        border-top: 4px solid #e74c3c;
      }

      .stat-card:hover {
        transform: translateY(-5px);
      }

      .stat-card i {
        font-size: 3rem;
        color: #e74c3c;
        margin-bottom: 20px;
      }

      .stat-card h3 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 10px;
      }

      .stat-card p {
        color: #7f8c8d;
        font-size: 1.1rem;
      }

      .values-section {
        background: white;
        padding: 60px 40px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        margin: 60px 0;
      }

      .values-section h2 {
        text-align: center;
        color: #2c3e50;
        font-size: 2.5rem;
        margin-bottom: 50px;
        font-weight: 600;
      }

      .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
      }

      .value-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
      }

      .value-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #e74c3c, #f39c12);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .value-icon i {
        color: white;
        font-size: 1.5rem;
      }

      .value-content h3 {
        color: #2c3e50;
        font-size: 1.3rem;
        margin-bottom: 10px;
        font-weight: 600;
      }

      .value-content p {
        color: #7f8c8d;
        line-height: 1.6;
      }

      .mission-section {
        background: linear-gradient(135deg, #2c3e50, #34495e);
        color: white;
        padding: 80px 40px;
        border-radius: 20px;
        text-align: center;
        margin: 60px 0;
      }

      .mission-section h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
        font-weight: 600;
      }

      .mission-section p {
        font-size: 1.2rem;
        line-height: 1.8;
        max-width: 800px;
        margin: 0 auto;
        opacity: 0.9;
      }

      @media (max-width: 768px) {
        .about-content {
          grid-template-columns: 1fr;
          gap: 40px;
        }

        .about-header h1 {
          font-size: 2.2rem;
        }

        .about-text {
          padding: 30px 20px;
        }

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

        .values-grid {
          grid-template-columns: 1fr;
          gap: 30px;
        }

        .values-section {
          padding: 40px 20px;
        }

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