/* ---------- СТРАНИЦА "О ПРОЕКТЕ" ---------- */
.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px 20px;
}

.about-container h1 {
    font-family: 'Raleway Black', sans-serif;
    color: #991b1b;
    font-size: 36px;
    margin-bottom: 5px;
}

.about-container .subtitle {
    color: #8a92a6;
    font-size: 18px;
    margin-bottom: 40px;
    border-left: 3px solid #991b1b;
    padding-left: 20px;
    line-height: 1.5;
}

.about-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #1f242e;
}

.about-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.about-section h2 {
    font-family: 'Raleway Black', sans-serif;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #c5c5c5;
    margin-bottom: 15px;
}

.about-section ul {
    margin: 10px 0 15px 20px;
    padding-left: 10px;
}

.about-section ul li {
    font-size: 15px;
    line-height: 1.6;
    color: #8a92a6;
    margin-bottom: 6px;
    list-style-type: disc;
}

.about-section ul li::marker {
    color: #991b1b;
}

.about-section strong {
    color: #efefef;
}

@media (max-width: 768px) {
    .about-container {
        padding: 30px 15px 40px 15px;
    }
    .about-container h1 {
        font-size: 28px;
    }
    .about-container .subtitle {
        font-size: 16px;
    }
    .about-section h2 {
        font-size: 20px;
    }
    .about-section p {
        font-size: 15px;
    }
    .about-section ul li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-container h1 {
        font-size: 24px;
    }
    .about-container .subtitle {
        font-size: 14px;
        padding-left: 15px;
    }
    .about-section h2 {
        font-size: 18px;
    }
}