﻿.privacy-policy-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 40px 20px;
   
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.policy-wrapper {
    max-width: 900px;
    width: 100%;
    background: rgba(20, 25, 45, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.08);
}

.policy-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.12);
    padding-bottom: 28px;
    margin-bottom: 35px;
}

.policy-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #f9e05d, #f5b041);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-date {
    font-size: 14px;
    color: #8892a8;
    margin-top: 8px;
}

.policy-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.policy-section {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.section-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(245, 200, 66, 0.12);
    color: #f5c842;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.section-content {
    flex: 1;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #f5c842;
    margin-bottom: 10px;
}

.section-text {
    color: #cdd4e0;
    font-size: 15px;
    line-height: 1.8;
}

    .section-text p {
        margin-bottom: 10px;
    }

    .section-text ul {
        list-style: none;
        padding-left: 8px;
        margin: 8px 0 12px 0;
    }

        .section-text ul li {
            padding: 4px 0 4px 28px;
            position: relative;
            color: #cdd4e0;
            font-size: 15px;
        }

            .section-text ul li::before {
                content: "✦";
                position: absolute;
                left: 0;
                color: #f5c842;
                font-size: 13px;
            }

    .section-text a {
        color: #f5c842;
        text-decoration: none;
        transition: color 0.2s;
    }

        .section-text a:hover {
            color: #ffdd77;
            text-decoration: underline;
        }

    .section-text strong {
        color: #f0e6d3;
    }

/* Таблица */
.table-wrap {
    overflow-x: auto;
    margin: 12px 0 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

    .table-wrap table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
        min-width: 420px;
    }

        .table-wrap table th {
            background: rgba(245, 200, 66, 0.08);
            color: #f5c842;
            font-weight: 600;
            padding: 12px 16px;
            text-align: left;
            border-bottom: 2px solid rgba(245, 200, 66, 0.15);
        }

        .table-wrap table td {
            padding: 12px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: #cdd4e0;
            vertical-align: top;
        }

        .table-wrap table tr:last-child td {
            border-bottom: none;
        }

/* Highlight section */
.highlight-section .section-text {
    background: rgba(245, 200, 66, 0.04);
    border-left: 3px solid #f5c842;
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
}

    .highlight-section .section-text p {
        margin-bottom: 8px;
    }

        .highlight-section .section-text p:last-child {
            margin-bottom: 0;
        }

.policy-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 215, 0, 0.08);
    text-align: center;
}

.footer-copy {
    font-size: 14px;
    color: #5a647a;
}

/* Адаптив */
@media (max-width: 700px) {
    .policy-wrapper {
        padding: 30px 20px;
    }

    .policy-title {
        font-size: 24px;
    }

    .policy-section {
        gap: 12px;
    }

    .section-number {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .section-title {
        font-size: 17px;
    }

    .section-text {
        font-size: 14px;
    }

    .table-wrap table {
        font-size: 13px;
        min-width: 320px;
    }

        .table-wrap table th,
        .table-wrap table td {
            padding: 10px 12px;
        }
}

@media (max-width: 480px) {
    .policy-wrapper {
        padding: 20px 14px;
    }

    .policy-title {
        font-size: 20px;
    }

    .policy-section {
        flex-direction: column;
        gap: 6px;
    }

    .section-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .section-title {
        font-size: 16px;
    }

    .section-text {
        font-size: 13px;
    }

        .section-text ul li {
            padding-left: 22px;
            font-size: 13px;
        }

    .table-wrap table {
        font-size: 12px;
        min-width: 280px;
    }

        .table-wrap table th,
        .table-wrap table td {
            padding: 8px 10px;
        }

    .highlight-section .section-text {
        padding: 12px 14px;
    }
}