.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero .lead {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
}

.about-section {
    margin-bottom: 60px;
    line-height: 1.8;
}

.about-section h2 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--border-color);
}

.about-section p {
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 15px;
}

.about-section ul {
    margin: 15px 0 15px 30px;
    color: var(--text-primary);
}

.about-section li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.about-section blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background-color: var(--bg-secondary);
    border-left: 5px solid var(--primary-color);
    font-style: italic;
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.8;
}

.about-section strong {
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero .lead {
        font-size: 16px;
    }

    .about-section h2 {
        font-size: 24px;
    }

    .about-section p,
    .about-section li {
        font-size: 15px;
    }

    .about-section blockquote {
        font-size: 16px;
        padding: 15px 20px;
    }
}
