/* Обёртка с градиентом */
.main-page-wrapper {
    background: linear-gradient(180deg, #eef5ff 0%, #f8faff 40%, #ffffff 100%);
    padding: 60px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
}

.breadcrumbs {

    display: none !important;
}

.legal-container {

    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e5eef7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 55px;
}

/* Синий прехедер */
.legal-preheader {
    color: #4da6e7;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* Главный заголовок */
.legal-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 35px;
    line-height: 1.2;
}

/* Блок демонстрации ТЗ (с логотипом) */
.trademark-sample {
    background: #fcfdfe;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #edf4f9;
    margin-bottom: 30px;
}

.trademark-sample p {
    margin-bottom: 15px;
    color: #333;
}

.trademark-image-container {
    display: flex;
    justify-content: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.trademark-image {
    max-width: 300px;
    height: auto;
}

/* Подзаголовки */
.legal-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-top: 35px;
    margin-bottom: 15px;
}

strong {

    font-weight: 600 !important;
}

.mainsubtitle {

    font-size: 21px;
}

.legal-content p {

    font-size: 15px !important;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 15px;
}

/* Блок с реквизитами регистрации */
.legal-details {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    margin: 40px 0;
    border: 1px solid #e2e8f0;
}

.legal-details p {
    margin-bottom: 12px;
    color: #333;
}

.legal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-details li {
    font-size: 15px;
    color: #555555;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.legal-details li::before {
    content: "•";
    color: #4da6e7;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.legal-download-btn {

    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background-color: var(--brand-blue, #3B8AF2); 
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 12px; 
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 138, 242, 0.2); 
}

/* Эффект при наведении */
.legal-download-btn:hover {
    background-color: #2b78db; 
    transform: translateY(-1px); 
}

/* Иконка внутри кнопки */
.legal-download-btn svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: currentColor;
}

/* Адаптив для мобилок */
@media (max-width: 768px) {
    .legal-container {
        padding: 30px 20px;
        border-radius: 16px;
    }
    .legal-title {
        font-size: 26px;
    }
    .legal-page-wrapper {
        padding: 20px 10px;
    }
    .trademark-image {
        max-width: 100%;
    }
}