.policy-container {
    background: white;
    border-radius: 2rem;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
    padding: 2rem;
    max-width: 900px;
    margin: 2rem auto;
}
.policy__title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 2rem;
}
.policy__sections {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.policy__section {
    background: #f8fafc;
    border-radius: 1.2rem;
    padding: 1.2rem 1.5rem;
    border: 1px solid #e2e8f0;
}
.policy__section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}
.policy__section-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1e293b;
    white-space: pre-wrap;
    word-break: break-word;
}
.policy__back {
    margin-top: 2rem;
    text-align: center;
}
.policy__btn {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: #4f46e5;
    color: white;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}
.policy__btn:hover {
    background: #4338ca;
}
@media (max-width: 768px) {
    .policy-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    .policy__title {
        font-size: 1.6rem;
    }
    .policy__section {
        padding: 1rem;
    }
    .policy__section-title {
        font-size: 1.1rem;
    }
    .policy__section-content {
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .policy-container {
        padding: 1rem;
        margin: 0.5rem;
    }
    .policy__title {
        font-size: 1.4rem;
    }
    .policy__section {
        padding: 0.75rem;
    }
    .policy__section-title {
        font-size: 1rem;
    }
    .policy__section-content {
        font-size: 0.85rem;
    }
    .policy__btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
}