/* style/about.css */

.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Light text on dark body background */
    background-color: var(--deep-navy); /* Body background */
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-about__section {
    padding: 60px 0;
    text-align: center;
}

.page-about__dark-section {
    background-color: var(--main-color);
    color: var(--text-main);
}

.page-about__section-title {
    font-size: clamp(28px, 4vw, 42px); /* Responsive font size for H2 */
    color: var(--gold-color);
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-about__main-title {
    font-size: clamp(32px, 5vw, 48px); /* Responsive font size for H1 */
    font-weight: 800;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__sub-title {
    font-size: 28px;
    color: var(--gold-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-about__text-block p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
}