/* Styles communs pour toutes les pages de politique */
.policy-page {
    background-color: #F5F6F7;
    min-height: 100vh;
    padding: 2rem 0;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-header {
    background: linear-gradient(135deg, #005C97, #D96C06);
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.policy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.policy-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.policy-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: #005C97;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #38E4AE;
}

.policy-section h3 {
    color: #D96C06;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.policy-section p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #333;
}

.policy-section ul,
.policy-section ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-section strong {
    color: #005C97;
}

.policy-section a {
    color: #D96C06;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #005C97;
    text-decoration: underline;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #f8f9fa;
}

.policy-table th,
.policy-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.policy-table th {
    background: #005C97;
    color: white;
    font-weight: 600;
}

.policy-table tr:hover {
    background: #f1f3f4;
}

.contact-box {
    background: linear-gradient(135deg, #38E4AE, #005C97);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.contact-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.contact-box a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

.back-to-home {
    display: inline-block;
    background: linear-gradient(135deg, #005C97, #D96C06);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.back-to-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 92, 151, 0.3);
}

.last-updated {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.highlight-box {
    background: #e3f2fd;
    border-left: 4px solid #1565c0;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box h4 {
    color: #1565c0;
    margin-bottom: 0.5rem;
}

.warning-box {
    background: #fff3e0;
    border-left: 4px solid #f57c00;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.warning-box h4 {
    color: #f57c00;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-container {
        padding: 0 15px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .policy-table {
        font-size: 0.9rem;
    }
    
    .policy-table th,
    .policy-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .policy-header {
        padding: 2rem 0;
    }
    
    .policy-header h1 {
        font-size: 1.8rem;
    }
    
    .policy-content {
        padding: 1.5rem;
    }
    
    .contact-box {
        padding: 1.5rem;
    }
} 