/* About Page Specific Styles */
.about-container {
    max-width: 900px;
    margin: 10rem auto 6rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.about-header h1 span {
    color: var(--primary);
}

.about-section {
    margin-bottom: 2.5rem;
}

.about-section h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.instructor-card {
    background: var(--background);
    padding: 1.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    margin-top: 1rem;
}

.instructor-card h4 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about-container {
        margin-top: 8rem;
        padding: 2rem;
    }
}