/* =====================================================
   CNIL.CSS
   ===================================================== */
.cnil-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Inter', sans-serif;
}

.cnil-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

.cnil-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.cnil-icon-wrapper {
    background: #eef2ff;
    color: #4f46e5;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-right: 20px;
}

.cnil-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 5px 0;
}

.cnil-subtitle {
    color: #64748b;
    margin: 0;
    font-size: 1.05rem;
}

.cnil-body {
    color: #334155;
    line-height: 1.8;
    font-size: 1.05rem;
}

.cnil-paragraph {
    margin-bottom: 20px;
}

.cnil-alert {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 25px;
}

.cnil-alert-title {
    font-weight: 600;
    color: #1e293b;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.cnil-alert-text {
    margin-bottom: 15px;
}

.cnil-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.cnil-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #3b82f6;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.2s;
}

.cnil-btn:hover {
    background: #2563eb;
    color: #fff;
}

.cnil-btn i {
    margin-right: 8px;
}

.cnil-footer {
    margin-bottom: 0;
}

.cnil-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.cnil-link:hover {
    text-decoration: underline;
}
