.about-page {
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    min-height: 31vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(to right, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.our-story {
    padding: 120px 0;
    background: linear-gradient(145deg, #0a0a0a 0%, #141414 100%);
    position: relative;
}

.our-story h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-image {
    text-align: center;
    font-size: 150px;
    color: var(--primary-color);
}

.mission-vision {
    padding: 120px 0;
    background: linear-gradient(165deg, var(--secondary-color), #0a0a0a);
    position: relative;
}

.mission-vision .card {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s var(--transition-bounce);
}

.mission-vision .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.our-values {
    padding: 120px 0;
    background: linear-gradient(145deg, #0a0a0a 0%, #141414 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    transition: all 0.4s var(--transition-bounce);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.statistics {
    padding: 120px 0;
    background: linear-gradient(165deg, var(--secondary-color), #0a0a0a);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    transition: all 0.4s var(--transition-bounce);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.our-team {
    padding: 120px 0;
    background: linear-gradient(145deg, #0a0a0a 0%, #141414 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.4s var(--transition-bounce);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--text-color);
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .our-story,
    .mission-vision,
    .our-values,
    .statistics,
    .our-team {
        padding: 80px 0;
    }

    .values-grid,
    .stats-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}