/* Policy Pages Specific Styles */

.policy-content {
    padding: 80px 0;
    background: #f8fafc;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.policy-meta {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #1e40af;
    margin-bottom: 3rem;
}

.policy-meta p {
    margin: 0.5rem 0;
    color: #374151;
    font-weight: 500;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.policy-section h2 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    color: #1f2937;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

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

.policy-section ul {
    color: #000000; /* Ensure all list text is black and visible */
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    color: inherit; /* Inherit black color from the UL */
}

.policy-section strong {
    color: #000000; /* Make bold text black as well */
    font-weight: 600;
}

/* Ensure links inside policy sections (like contact info) are also visible */
.policy-section a {
    color: #000000;
}

.policy-section a:hover {
    color: #1f2937;
}

.policy-footer {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    margin-top: 3rem;
}

.policy-footer p {
    margin: 0.5rem 0;
    color: #374151;
}

.policy-footer p:first-child {
    font-weight: 600;
    color: #1f2937;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policy-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section h3 {
        font-size: 1.1rem;
    }
    
    .policy-meta {
        padding: 1rem;
    }
    
    .policy-footer {
        padding: 1.5rem;
    }
}

