.elementor-489 .elementor-element.elementor-element-f7bb090{--display:flex;}.elementor-489 .elementor-element.elementor-element-f7bb090 .trx_addons_bg_text{z-index:0;}.elementor-489 .elementor-element.elementor-element-f7bb090 .trx_addons_bg_text.trx_addons_marquee_wrap:not(.trx_addons_marquee_reverse) .trx_addons_marquee_element{padding-right:50px;}.elementor-489 .elementor-element.elementor-element-f7bb090 .trx_addons_bg_text.trx_addons_marquee_wrap.trx_addons_marquee_reverse .trx_addons_marquee_element{padding-left:50px;}/* Start custom CSS for html, class: .elementor-element-6260cb8 *//* ============ STYLES POLITIQUE DE CONFIDENTIALITÉ ============ */
.legal-notice-container {
    font-family: inherit;
    line-height: 1.6;
}

/* En-tête avec animation */
.hero-section {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    padding: 60px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><text y="15" font-size="14" fill="rgba(255,255,255,0.05)">🔒</text></svg>') repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content .main-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    
    /* Animation d'apparition */
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: titleAppear 1.2s ease-out forwards;
    position: relative;
    overflow: hidden;
}

/* Animations du titre */
@keyframes titleAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
        letter-spacing: 0px;
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: 2px;
    }
}

.hero-content .main-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: titleSweep 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes titleSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-content .main-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: titlePulse 4s ease-in-out infinite;
    animation-delay: 2s;
    z-index: -1;
}

@keyframes titlePulse {
    0%, 100% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    50% {
        width: 120%;
        height: 200%;
        opacity: 0.1;
    }
}

/* Section contenu */
.legal-content-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blocs légaux */
.legal-block {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.legal-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f39c12, transparent);
    transition: left 0.3s ease;
}

.legal-block:hover {
    border-color: #f39c12;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.15);
    transform: translateY(-3px);
}

.legal-block:hover::before {
    left: 100%;
}

/* Titres */
.legal-title {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #f39c12;
    display: inline-block;
    position: relative;
}

.legal-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: #e67e22;
    transition: width 0.3s ease;
}

.legal-block:hover .legal-title::after {
    width: 100%;
}

.legal-info h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

/* Contenu */
.legal-info p {
    color: #34495e;
    font-size: 1rem;
    margin: 15px 0;
    line-height: 1.7;
}

.legal-info p strong {
    color: #2c3e50;
    font-weight: 600;
}

.legal-info ul {
    margin: 20px 0;
    padding-left: 0;
}

.legal-info li {
    background: #f8f9fa;
    padding: 15px 20px;
    margin: 10px 0;
    border-left: 4px solid #f39c12;
    border-radius: 5px;
    list-style: none;
    color: #34495e;
    transition: all 0.3s ease;
    position: relative;
}

.legal-info li::before {
    content: '🔒';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.legal-info li:hover {
    background: #fff;
    transform: translateX(10px);
    border-left-color: #e67e22;
    padding-left: 30px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.1);
}

.legal-info li:hover::before {
    opacity: 1;
    left: 8px;
}

.legal-info li strong {
    color: #f39c12;
}

/* Liens */
.legal-info a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.legal-info a:hover {
    color: #e67e22;
    border-bottom-color: #e67e22;
}

/* Bloc contact spécial */
.contact-block {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-color: #f39c12;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #f39c12;
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.2);
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
}

.contact-item a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
}

.contact-item:hover a {
    color: #f39c12;
}

/* Footer info */
.footer-info {
    background: #2c3e50;
    padding: 20px 0;
    color: white;
    text-align: center;
}

.last-update {
    color: #bdc3c7;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* Animation d'entrée pour les blocs */
@keyframes blockAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-block {
    animation: blockAppear 0.6s ease-out forwards;
    opacity: 0;
}

.legal-block:nth-child(1) { animation-delay: 0.2s; }
.legal-block:nth-child(2) { animation-delay: 0.4s; }
.legal-block:nth-child(3) { animation-delay: 0.6s; }
.legal-block:nth-child(4) { animation-delay: 0.8s; }
.legal-block:nth-child(5) { animation-delay: 1.0s; }
.legal-block:nth-child(6) { animation-delay: 1.2s; }

/* Responsive */
@media (max-width: 768px) {
    .hero-content .main-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        animation-duration: 1s;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .legal-content-section {
        padding: 40px 0;
    }
    
    .legal-block {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .legal-title {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contact-info {
        gap: 12px;
    }
    
    .contact-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-item:hover {
        transform: translateY(-5px);
    }
    
    .legal-info li:hover {
        transform: translateX(5px);
        padding-left: 25px;
    }
    
    .legal-info li::before {
        display: none;
    }
    
    .hero-content .main-title::before,
    .hero-content .main-title::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content .main-title {
        font-size: 1.5rem;
    }
    
    .legal-title {
        font-size: 1.1rem;
    }
    
    .legal-info p,
    .legal-info li {
        font-size: 0.95rem;
    }
    
    .contact-item {
        padding: 12px;
    }
}

/* États focus pour l'accessibilité */
.contact-item:focus-within {
    outline: 3px solid rgba(243, 156, 18, 0.5);
    outline-offset: 2px;
}

.legal-info a:focus {
    outline: 2px solid #f39c12;
    outline-offset: 2px;
    border-radius: 3px;
}/* End custom CSS */