/* policy-styles.css */
.policy-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.policy-header h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.policy-header .icon {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 15px;
}

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

.contact-info i {
    width: 25px;
    color: #0056b3;
}

.policy-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    color: #0056b3;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.policy-section ul, 
.policy-section ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.alert-info {
    background-color: #e8f4f8;
    border-left: 4px solid #0056b3;
    padding: 15px;
    margin: 20px 0;
}

.navigation-links {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    display: flex;
    justify-content: space-between;
}

.navigation-links a {
    color: #0056b3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* .navigation-links a:hover {
    text-decoration: underline;
} */

@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .navigation-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}