/* Policy and Security Page Styles */

.page-header {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 30px;
}

.page-header h1 {
    color: #0a2540;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.page-header p {
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 50px;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: #0a2540;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.policy-section h3 {
    color: #0a2540;
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-section p, .policy-section ul {
    margin-bottom: 15px;
    color: #4a5568;
}

.policy-section ul {
    padding-left: 20px;
}

.policy-section ul li {
    margin-bottom: 8px;
}

.privacy-highlight, .security-highlight {
    background-color: #e6f7ff;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid #0a2540;
}

.privacy-highlight h3, .security-highlight h3 {
    color: #0a2540;
    margin-top: 0;
    margin-bottom: 10px;
}

.privacy-highlight p, .security-highlight p {
    margin-bottom: 0;
}

.policy-contact {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

/* Security Specific Styles */
.security-overview {
    margin-bottom: 40px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.security-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.security-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0a2540;
}

.security-card h3 {
    color: #0a2540;
    margin-top: 0;
    margin-bottom: 15px;
}

.security-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.security-card ul li {
    margin-bottom: 8px;
    color: #4a5568;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.compliance-item {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid #d00;
}

.compliance-item h3 {
    color: #0a2540;
    margin-top: 0;
    margin-bottom: 10px;
}

.compliance-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.download-container {
    text-align: center;
    margin: 30px 0;
}

.download-button {
    display: inline-block;
    background-color: #0a2540;
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #0d3158;
}

/* CTA Section */
.cta-section {
    background-color: #0a2540;
    color: white;
    padding: 40px;
    border-radius: 8px;
    margin-top: 50px;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-top: 0;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .security-grid, .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .policy-contact {
        padding: 15px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}
