/* Страница О бренде */
.about-page {
    padding: 40px 0 60px;
    overflow: hidden;
}

.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2E2E2E;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C6A43F, transparent);
}

.about-content {
    width: 100%;
    max-width: 100%;
}

/* Общие стили секций */
.about-section {
    margin-bottom: 80px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: #2E2E2E;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #C6A43F, transparent);
}

/* Сетка для блоков с изображением */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Класс для реверса (изображение слева) */
.about-grid.reverse {
    direction: ltr; /* сбрасываем возможные реверсы */
}

.about-grid.reverse .about-image {
    order: 1;
}

.about-grid.reverse .about-text {
    order: 2;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
}

/* Блок миссии */
.mission {
    text-align: center;
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
    border: 1px solid #f0e8dd;
}

.mission blockquote {
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-style: italic;
    color: #2E2E2E;
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.mission blockquote p {
    margin: 0;
}

.mission blockquote::before,
.mission blockquote::after {
    content: '"';
    font-size: 40px;
    color: #C6A43F;
    opacity: 0.3;
    font-family: serif;
    position: absolute;
}

.mission blockquote::before {
    top: -20px;
    left: -20px;
}

.mission blockquote::after {
    bottom: -40px;
    right: -20px;
}

/* Преимущества */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(198,164,63,0.1);
}

.feature-item i {
    font-size: 40px;
    color: #C6A43F;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 500;
    color: #2E2E2E;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Адаптивность */
@media screen and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    .section-title {
        font-size: 28px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mission {
        padding: 30px;
    }
    .mission blockquote {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
    .section-title {
        font-size: 24px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .mission {
        padding: 20px;
    }
}