.policy_container {
    margin: 2rem;
    background: #ffffff;
    border-radius: 2rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    min-height: calc(100vh - 5rem - 7rem - 3rem);
    display: flex;
    flex-direction: column;
}
.policy_title {
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #0f172a;
    text-align: center;
    margin-bottom: 1.8rem;
}
.policy_sections {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.policy_section {
    background-color: #fefefe;
    border: 1px solid #e2e8f0;
    border-radius: 1.2rem;
    padding: 1rem;
}
.policy_section_title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.policy_section_content {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1e293b;
    white-space: pre-wrap;
    word-break: break-word;
}
@media (max-width: 768px) {
    .policy_container {
        margin: 1rem;
        min-height: calc(100vh - 4rem - 5rem - 5.5rem);
        padding: 1.5rem;
    }
    .policy_title {
        font-size: 1.6rem;
        margin-bottom: 1.4rem;
    }
    .policy_section_title {
        font-size: 1rem;
    }
    .policy_section_content {
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .policy_container {
        margin: 0.5rem;
        min-height: calc(100vh - 4rem - 5rem - 2.3rem);
        padding: 1rem;
    }
    .policy_title {
        font-size: 1.4rem;
    }
    .policy_section {
        padding: 0.75rem;
    }
}