/* ================================
   СТИЛИ ДЛЯ СТРАНИЦЫ ABOUT
   ================================ */

/* Специфичные стили body для About */
body {
    min-height: 100dvh;
    background: #FCFCFC;
}

/* ================================
   HERO СЕКЦИЯ С ФОНОМ
   ================================ */
.hero-section {
    position: relative;
    height: 409px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../img/about_bg.png") center/cover;
    color: #FCFCFC;
    display: flex;
    flex-direction: column;
}

/* Заголовок страницы */
.hero-title {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
}

.hero-title h1 {
    color: #FCFCFC;
    font-size: 40px;
    font-weight: 700;
    display: none;
}

/* ================================
   ОСНОВНОЙ КОНТЕНТ
   ================================ */
.content-section {
    background: #FCFCFC;
    padding: 80px 0;
}

.three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.content-section .three-columns .column h2 {
    color: #575644 !important;
    font-family: "Gill Sans" !important;
    font-size: 28px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: normal !important;
    margin-bottom: 30px !important;
}

.content-section .three-columns .column p {
    color: #878585 !important;
    font-family: "Gill Sans" !important;
    font-size: 19px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

.logo-link {
    display: inline-block;
}

.mobile-menu-logo {
    display: inline-block;
    color: #FCFCFC;
}

/* ================================
   REVIEW СЕКЦИЯ
   ================================ */
.review-section {
    background: #FCFCFC;
    padding: 80px 0;
}

.review-section h2 {
    color: #575644;
    font-family: "Gill Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
}

.review-section h2 span {
    position: relative;
}

.review-section h2 span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #575644;
}

.review-content p {
    color: #878585;
    font-family: "Gill Sans";
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
}

/* ================================
   АДАПТИВНОСТЬ ДЛЯ ABOUT
   ================================ */
@media (max-width: 1024px) {
    .three-columns {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 300px;
    }

    .hero-title {
        display: flex;
    }

    .hero-title h1 {
        font-size: 36px;
    }

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

    .review-section {
        padding: 50px 0;
        background: #FCFCFC;
    }

    .three-columns {
        gap: 40px;
    }

    .column h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .column p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .review-section h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .review-content p {
        font-size: 16px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 250px;
    }

    .hero-title {
        padding-bottom: 30px;
    }

    .hero-title h1 {
        font-size: 28px;
        display: block;
    }
}