.elementor-485 .elementor-element.elementor-element-d3d2949{--display:flex;}.elementor-485 .elementor-element.elementor-element-d3d2949 .trx_addons_bg_text{z-index:0;}.elementor-485 .elementor-element.elementor-element-d3d2949 .trx_addons_bg_text.trx_addons_marquee_wrap:not(.trx_addons_marquee_reverse) .trx_addons_marquee_element{padding-right:50px;}.elementor-485 .elementor-element.elementor-element-d3d2949 .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-28ebbe8 *//* ============ STYLES POLITIQUE COOKIES ============ */
.legal-notice-container {
    font-family: inherit;
    line-height: 1.6;
}

/* En-tête avec animation cookies */
.hero-section {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    padding: 60px 0;
    text-align: center;
    color: white;
    posi/* ============ STYLES POLITIQUE COOKIES ============ */
.legal-notice-container {
    font-family: inherit;
    line-height: 1.6;
}

/* En-tête avec animation cookies */
.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;
}

/* Particules de cookies qui tombent */
.hero-section::after {
    content: '🍪';
    position: absolute;
    top: -50px;
    left: 20%;
    font-size: 2rem;
    animation: cookieFall 12s linear infinite;
    opacity: 0.2;
}

@keyframes cookieFall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0;
        left: 20%;
    }
    25% {
        left: 40%;
        opacity: 0.3;
    }
    50% {
        left: 60%;
        opacity: 0.2;
    }
    75% {
        left: 80%;
        opacity: 0.3;
    }
    100% {
        transform: translateY(calc(100vh + 50px)) rotate(360deg);
        opacity: 0;
        left: 10%;
    }
}

.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;
    }
}

/* BANDEROLE COOKIE SUR LE TITRE */
.hero-content .main-title::after {
    content: 'POLITIQUE COOKIES';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 30px;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    font-size: 0.6rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%) skew(-15deg);
    animation: cookieBanner 4s ease-in-out infinite;
    animation-delay: 2s;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1;
}

@keyframes cookieBanner {
    0% { left: -100%; opacity: 0; }
    20% { left: -10%; opacity: 1; }
    80% { left: 110%; opacity: 1; }
    100% { left: 200%; opacity: 0; }
}

.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%; }
}

/* 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: 12px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    
    /* Animation d'entrée */
    opacity: 0;
    transform: translateY(20px);
    animation: blockSlideIn 0.8s ease-out forwards;
}

.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; }

@keyframes blockSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-block:hover {
    transform: translateY(-8px);
    border-color: #f39c12;
    box-shadow: 0 12px 25px rgba(243, 156, 18, 0.15);
}

.legal-block:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    border-radius: 12px 12px 0 0;
    animation: barSlide 0.5s ease-out;
}

@keyframes barSlide {
    from { width: 0; }
    to { width: 100%; }
}

/* Titres des blocs */
.legal-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

/* Contenu des blocs */
.legal-info {
    margin: 0;
    padding: 0;
}

.legal-info p {
    color: #34495e;
    margin: 15px 0;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-info ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-info li {
    background: #f8f9fa;
    padding: 15px 20px;
    margin: 10px 0;
    border-left: 4px solid #f39c12;
    border-radius: 8px;
    color: #34495e;
    transition: all 0.3s ease;
    position: relative;
}

.legal-info li::before {
    content: '🍪';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.legal-info li:hover {
    background: white;
    transform: translateX(15px);
    border-left-color: #e67e22;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.1);
    padding-left: 35px;
}

.legal-info li:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    left: 8px;
}

/* Bloc contact spécial */
.contact-block {
    background: linear-gradient(135deg, #fff8f0, #ffffff);
    border-color: #f39c12;
    position: relative;
}

.contact-block::after {
    content: '🍪';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.1;
    animation: cookieRotate 8s linear infinite;
}

@keyframes cookieRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Contact info dans le bloc cookies tiers */
.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 #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.contact-item:hover {
    border-color: #f39c12;
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.2);
}

.contact-item::before {
    content: '🍪';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.contact-item:hover::before {
    opacity: 0.4;
    transform: translateY(-50%) scale(1);
    right: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 35px;
    text-align: center;
}

.contact-item span:last-child {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
}

.contact-item:hover span:last-child {
    color: #f39c12;
}

/* Footer */
.footer-info {
    background: #2c3e50;
    padding: 25px 0;
    color: white;
    text-align: center;
}

.last-update {
    color: #bdc3c7;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content .main-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-section::after {
        display: none;
    }
    
    .hero-content .main-title::after {
        display: none; /* Pas de banderole sur mobile */
    }
    
    .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);
    }
    
    .contact-item::before {
        display: none;
    }
    
    .legal-info li:hover {
        transform: translateX(5px);
        padding-left: 25px;
    }
    
    .legal-info li::before {
        display: none;
    }
    
    .contact-block::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;
    }
}
tion: 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;
}

/* Particules de cookies qui tombent */
.hero-section::after {
    content: '🍪';
    position: absolute;
    top: -50px;
    left: 20%;
    font-size: 2rem;
    animation: cookieFall 12s linear infinite;
    opacity: 0.2;
}

@keyframes cookieFall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0;
        left: 20%;
    }
    25% {
        left: 40%;
        opacity: 0.3;
    }
    50% {
        left: 60%;
        opacity: 0.2;
    }
    75% {
        left: 80%;
        opacity: 0.3;
    }
    100% {
        transform: translateY(calc(100vh + 50px)) rotate(360deg);
        opacity: 0;
        left: 10%;
    }
}

.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: 12px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    
    /* Animation d'entrée */
    opacity: 0;
    transform: translateY(20px);
    animation: blockSlideIn 0.8s ease-out forwards;
}

.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; }

@keyframes blockSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-block:hover {
    transform: translateY(-8px);
    border-color: #f39c12;
    box-shadow: 0 12px 25px rgba(243, 156, 18, 0.15);
}

.legal-block:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    border-radius: 12px 12px 0 0;
    animation: barSlide 0.5s ease-out;
}

@keyframes barSlide {
    from { width: 0; }
    to { width: 100%; }
}

/* Titres des blocs */
.legal-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

/* Contenu des blocs */
.legal-info {
    margin: 0;
    padding: 0;
}

.legal-info p {
    color: #34495e;
    margin: 15px 0;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-info ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-info li {
    background: #f8f9fa;
    padding: 15px 20px;
    margin: 10px 0;
    border-left: 4px solid #f39c12;
    border-radius: 8px;
    color: #34495e;
    transition: all 0.3s ease;
    position: relative;
}

.legal-info li::before {
    content: '🍪';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.legal-info li:hover {
    background: white;
    transform: translateX(15px);
    border-left-color: #e67e22;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.1);
    padding-left: 35px;
}

.legal-info li:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    left: 8px;
}

/* Bloc contact spécial */
.contact-block {
    background: linear-gradient(135deg, #fff8f0, #ffffff);
    border-color: #f39c12;
    position: relative;
}

.contact-block::after {
    content: '🍪';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.1;
    animation: cookieRotate 8s linear infinite;
}

@keyframes cookieRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Contact info dans le bloc cookies tiers */
.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 #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.contact-item:hover {
    border-color: #f39c12;
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.2);
}

.contact-item::before {
    content: '🍪';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.contact-item:hover::before {
    opacity: 0.4;
    transform: translateY(-50%) scale(1);
    right: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 35px;
    text-align: center;
}

.contact-item span:last-child {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
}

.contact-item:hover span:last-child {
    color: #f39c12;
}

/* Footer */
.footer-info {
    background: #2c3e50;
    padding: 25px 0;
    color: white;
    text-align: center;
}

.last-update {
    color: #bdc3c7;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}/* End custom CSS */