/* Страница реквизитов */
.requisites-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);
}

.requisites-content {
    width: 100%;
    max-width: 100%;
}

/* Секции */
.requisites-section {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
    border: 1px solid #f0e8dd;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    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);
}

/* Сетка для двух колонок (юридическая + банковская) */
.requisites-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

/* Контактная информация в две колонки */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0e8dd;
}

.contact-item i {
    color: #C6A43F;
    width: 30px;
    font-size: 22px;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-label {
    font-weight: 500;
    color: #2E2E2E;
    display: inline-block;
    margin-right: 10px;
    min-width: 70px;
}

.contact-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #C6A43F;
}

/* Соцсети (отдельный блок) */
.social-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0e8dd;
}

.social-title {
    font-size: 18px;
    font-weight: 500;
    color: #2E2E2E;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(198,164,63,0.1);
    border-radius: 50%;
    color: #C6A43F;
    font-size: 20px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #C6A43F;
    color: #fff;
    transform: translateY(-3px);
}

/* Юридическая информация */
.legal-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

.legal-info p:last-child {
    margin-bottom: 0;
}

.legal-info strong {
    color: #2E2E2E;
    font-weight: 500;
}

/* Банковские реквизиты */
.bank-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 8px;
}

.bank-info p:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bank-info strong {
    min-width: 180px;
    color: #2E2E2E;
    font-weight: 500;
    margin-right: 15px;
}

/* Адаптивность */
@media screen and (max-width: 1024px) {
    .requisites-grid {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    .section-title {
        font-size: 24px;
    }
    .requisites-section {
        padding: 25px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .requisites-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .bank-info p {
        flex-direction: column;
    }
    .bank-info strong {
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
    .section-title {
        font-size: 22px;
    }
    .requisites-section {
        padding: 20px;
    }
    .contact-item {
        flex-wrap: wrap;
        gap: 10px;
    }
    .contact-item i {
        width: 24px;
        font-size: 20px;
    }
    .contact-label {
        display: block;
        margin-bottom: 5px;
    }
    .social-icons {
        justify-content: center;
    }
}