.policy-page {
    width: 100%;
    padding: 40px 0;
}

.policy-page__content {
    width: 100%;
}

.policy-page__title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    text-align: center;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
}

.policy-page__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    color: var(--text-color);
}

.policy-page__text h2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-top: 40px;
}

.policy-page__text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.policy-page__text h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-top: 25px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.policy-page__text p {
    margin-bottom: 20px;
}

.policy-page__text ul,
.policy-page__text ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.policy-page__text li {
    margin-bottom: 10px;
}

.policy-page__text a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.policy-page__text a:hover {
    opacity: 0.7;
}

.policy-page__text strong {
    font-weight: 600;
    color: #000;
}

.policy-page__text em {
    font-style: italic;
}

.policy-page__text blockquote {
    border-left: 4px solid #000;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

.policy-page__text table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.policy-page__text table th,
.policy-page__text table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.policy-page__text table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-page {
        padding: 40px 0;
    }

    .policy-page__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .policy-page__text h2 {
        font-size: 26px;
        margin-top: 30px;
    }

    .policy-page__text h3 {
        font-size: 22px;
        margin-top: 25px;
    }

    .policy-page__text h4 {
        font-size: 18px;
        margin-top: 20px;
    }

    .policy-page__text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .policy-page {
        padding: 30px 0;
    }

    .policy-page__container {
        padding: 0 15px;
    }

    .policy-page__title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .policy-page__text h2 {
        font-size: 24px;
    }

    .policy-page__text h3 {
        font-size: 20px;
    }

    .policy-page__text {
        font-size: 14px;
    }

    .policy-page__text table {
        font-size: 13px;
    }

    .policy-page__text table th,
    .policy-page__text table td {
        padding: 8px;
    }
}