.about-hero {
    background: var(--secondary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 280px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.about-hero h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.1;
}

.about-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 30px 0;
        min-height: 150px;
    }

    .about-hero h1 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .about-hero p {
        font-size: 14px;
        max-width: 100%;
    }
}

.about-content {
    padding: 40px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

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

.about-text h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 32px 0 16px 0;
}

.about-text ul {
    margin-left: 20px;
}

.about-text li {
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

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

    .page-hero h1 {
        font-size: 2.00rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 28px 0;
    }
    
    .page-hero h1 {
        font-size: 1.60rem;
    }

    .about-text h2 {
        font-size: 1.60rem;
    }
    
    .about-content {
        padding: 28px 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 1.40rem;
    }
    
    .about-text h2 {
        font-size: 1.20rem;
    }
}
