:root {
    --primary-color: #0a4abf;
    --secondary-color: #fca311;
    --dark-grey: #333333;
    --light-grey: #f4f4f4;
    --text-color: #555555;
    --border-color: #dddddd;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Lato', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.7;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.policy-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.policy-header h1 {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    color: var(--dark-grey);
    text-align: center;
    margin-bottom: 10px;
}

.policy-header p {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.policy-content h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 8px;
}

.policy-content h3 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--dark-grey);
    margin-top: 25px;
    margin-bottom: 10px;
}

.policy-content p,
.policy-content li {
    font-size: 1rem;
    text-align: justify;
}

.policy-content ul {
    padding-left: 25px;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-container {
        margin: 20px auto;
        padding: 15px 20px;
    }

    .policy-header h1 {
        font-size: 2.2rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }
}