/* =========================================
   ABOUT US PAGE STYLES
   ========================================= */

/* Скрываем нативный скролл (работает Lenis) */
html {
    scrollbar-width: none;
}
html::-webkit-scrollbar {
    display: none;
}

/* Фон страницы */
.page-background {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
}

.page-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
}

/* Обертка контента */
.about-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 50px 100px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; /* Отступ между блоками */
}

/* --- ЕДИНЫЙ СТИЛЬ ДЛЯ ВСЕХ БЛОКОВ (СТЕКЛЯННЫЕ КАРТОЧКИ) --- */
.info-card,
.cta-section {
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    
    /* Golden Standard: Glassmorphism */
    background: rgba(42, 42, 42, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; /* Golden Standard: Radius */
    
    text-align: center;
}

/* Заголовки блоков */
.info-card h1,
.info-card h2,
.cta-section h2 {
    font-size: 2.5rem; /* Golden Standard: Desktop H1/H2 */
    font-weight: 800;
    margin: 0 0 20px 0;
    color: #ffffff;
    text-transform: uppercase; /* Опционально, для стиля */
    letter-spacing: 1px;
}

/* Текст блоков */
.info-card p {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Специфика для юридической информации */
.legal-details p {
    margin-bottom: 10px;
    color: #dcdcdc;
}
.legal-details strong {
    color: #ffffff;
    font-weight: 700;
}

/* --- CTA SECTION --- */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px; /* Golden Standard: Buttons */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

/* --- ADAPTIVE --- */
@media (max-width: 768px) {
    .about-page-wrapper {
        padding: 120px 20px 80px 20px;
        gap: 30px;
    }

    .info-card,
    .cta-section {
        padding: 30px 20px;
    }

    .info-card h1,
    .info-card h2,
    .cta-section h2 {
        font-size: 2rem !important; /* Golden Standard: Mobile H1/H2 */
    }

    .info-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-button {
        width: 100%;
        text-align: center;
    }
}