/* 
 * Privacy Policy Styles
 * Styling for the privacy policy page
 */

/* Privacy Policy Header */
.policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark-color, #0056b3) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.policy-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.policy-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Policy Content */
.policy-content {
    padding: 60px 0;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

/* Section Styling */
.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.policy-section h3 {
    color: #444;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.policy-section p, 
.policy-section li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul, 
.policy-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* Highlighted Box */
.policy-section .highlight-box {
    background: #f9f9f9;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.policy-section .highlight-box p:last-child {
    margin-bottom: 0;
}

/* Table of Contents */
.policy-toc {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.policy-toc h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.policy-toc ul {
    margin-bottom: 0;
}

/* Policy Metadata */
.policy-meta {
    font-style: italic;
    color: #888;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.policy-meta p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 2.2rem;
    }
    
    .policy-container {
        padding: 25px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}
