#privacy-policy {
    padding: 40px 20px;
}

.page-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.policy-content {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.policy-content ul, .policy-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-content li {
    margin-bottom: 5px;
}

.policy-footer {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

@media (max-width: 768px) {
    #privacy-policy {
        padding: 20px 10px;
    }

    .page-title {
        font-size: 2rem;
    }

    .policy-content {
        padding: 20px;
    }

    .policy-content h2 {
        font-size: 1.6rem;
    }

    .policy-content h3 {
        font-size: 1.3rem;
    }
}