/* Privacy Policy Section Base */
.policy-section {
    background-color: #f4f6f8;
    padding: 80px 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Container limits width for readability */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

/* Header Styling */
.policy-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 20px;
}

.policy-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-bottom: 20px;
}

.intro {
    font-size: 1.1rem;
    color: #555;
}

/* Clause Styling */
.policy-clause {
    margin-bottom: 35px;
}

.policy-clause h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.policy-clause p {
    margin-bottom: 15px;
    color: #4a4a4a;
}

.policy-clause ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-clause ul li {
    margin-bottom: 8px;
    color: #4a4a4a;
}

.policy-clause ul li strong {
    color: #2c3e50;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .policy-container {
        padding: 30px 20px;
    }
    
    .policy-header h2 {
        font-size: 2rem;
    }
}