/* css/privacy-policy.css */

.policy-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 40px;
    background-color: var(--surface-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.policy-header h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.policy-header p {
    font-size: 1em;
    color: var(--secondary-text-color);
}

.content-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.6em;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.content-section p,
.content-section ul {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.content-section ul {
    list-style: disc;
    padding-left: 25px;
}

.content-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}
.content-section a:hover {
    text-decoration: underline;
}

.language-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
    margin: 50px 0;
}

/* For Bengali Font */
[lang="bn"] .section-title,
[lang="bn"] p,
[lang="bn"] ul {
    font-family: var(--font-family-bengali);
}

@media (max-width: 768px) {
    .policy-container {
        margin: 20px 15px;
        padding: 20px;
        margin-bottom: 90px; /* [NEW] Add space for bottom nav */
    }

    .policy-header h1 {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.4em;
    }

    .content-section p,
    .content-section ul {
        font-size: 1em;
    }

    /* [NEW] Hide footer on mobile devices for this page */
    footer {
        display: none;
    }
}