

.policy-content {
    padding: 4rem 0;
    background-color: var(--bg-white);
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.policy-section h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.policy-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-section ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.policy-section ul li::marker {
    color: var(--primary-color);
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: var(--secondary-color);
}


@media (max-width: 768px) {
    .policy-content {
        padding: 2rem 1rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.3rem;
    }

    .policy-section ul {
        margin-left: 1.5rem;
    }
}
