/* Policy Pages Unified Styling */
.policy-section {
    padding: 6rem 0;
    min-height: 80vh;
}

.policy-section .container {
    max-width: 900px;
}

.policy-section h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.policy-content {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-content p.last-updated {
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 2rem;
    text-align: right;
}

.policy-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--color-heading);
    font-size: 1.75rem;
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content p, 
.policy-content ul {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.policy-content ul {
    padding-left: 2rem;
    list-style-type: disc;
}

.policy-content li {
    margin-bottom: 0.75rem;
}

.policy-content strong {
    color: var(--color-accent);
}

.policy-content .contact-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-heading);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .policy-section {
        padding: 5rem 0;
    }
    
    .policy-content {
        padding: 1.5rem;
    }
    
    .policy-section h1 {
        font-size: 2rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
} 