:root {
    --neptune-blue: #042b47;
    --neptune-dark-blue: #003d7a;
    --neptune-light-blue: #e3f2fd;
    --neptune-gold2: #ffd700;
    --neptune-gold: #c79c46;
    --neptune-dark: #1a237e;
    --neptune-gray: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--neptune-blue) !important;
}

.navbar-brand span {
    color: var(--neptune-gold);
}

.navbar-brand img {
    height: 90px;
    width: 300px;
    object-fit: contain;
}

.nav-link {
    font-weight: 500;
    color: var(--neptune-dark-blue) !important;
    padding: 0.5rem 0.8rem !important;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--neptune-blue) !important;
}

.navbar-toggler {
    border: none;
}

/* Hero Section with Video */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 50, 100, 0.7) 0%, rgba(0, 90, 180, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.hero-content h1 span {
    color: var(--neptune-gold);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.btn-neptune {
    background: linear-gradient(135deg, var(--neptune-blue) 0%, var(--neptune-dark-blue) 100%);
    color: white;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--neptune-blue);
    animation: fadeIn 1.5s ease;
}

.btn-neptune:hover {
    background: linear-gradient(135deg, var(--neptune-dark-blue) 0%, var(--neptune-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 90, 180, 0.4);
    color: white;
}

.btn-outline-neptune {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.btn-outline-neptune:hover {
    background: white;
    color: var(--neptune-blue);
    transform: translateY(-3px);
}

/* Section Styling */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--neptune-dark-blue);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--neptune-gold);
    border-radius: 2px;
}

.section-title p {
    color: var(--neptune-blue);
    margin-top: 10px;
    font-weight: 500;
}

/* About Section */
#about {
    background-color: white;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--neptune-blue);
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.highlight {
    background: linear-gradient(135deg, var(--neptune-blue) 0%, var(--neptune-dark-blue) 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.highlight p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Mission Section with Background */
#mission {
    background: linear-gradient(rgba(0, 90, 180, 0.85), rgba(0, 50, 100, 0.9)), url('../images/enfant.jpg') center/cover no-repeat;
    color: white;
}

#mission .section-title h2 {
    color: white;
}

#mission .section-title h2::after {
    background: var(--neptune-gold);
}

#mission .section-title p {
    color: rgba(255, 255, 255, 0.9);
}

.mission-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.mission-card h4 {
    color: var(--neptune-gold2);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Projects Section */
#projects {
    background-color: var(--neptune-light-blue);
}

.project-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--neptune-blue);
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.project-item h4 {
    color: var(--neptune-dark-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.project-item p {
    color: #555;
    line-height: 1.7;
}

/* Team Section with Background */
#team {
    background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(0, 50, 100, 0.85)), url('../images/equipe.jpeg') center/cover no-repeat;
    color: white;
}

#team .section-title h2 {
    color: white;
}

#team .section-title p {
    color: rgba(255, 255, 255, 0.9);
}

.team-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card h4 {
    color: white;
    margin-top: 1rem;
    font-size: 1.3rem;
}

.team-card p.role {
    color: var(--neptune-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-card p.desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Team Member Photo Styling */
.team-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 4px solid var(--neptune-gold);
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

/* Membership Section */
#membership {
    background-color: white;
}

.membership-card {
    background: white;
    border: 2px solid var(--neptune-blue);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 90, 180, 0.2);
    border-color: var(--neptune-gold);
}

.membership-card h4 {
    color: var(--neptune-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.membership-card ul {
    text-align: left;
    margin-top: 1rem;
    padding-left: 1rem;
}

.membership-card ul li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

/* Contact Section with Background */
#contact {
    background: linear-gradient(rgba(0, 90, 180, 0.85), rgba(0, 50, 100, 0.9)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600') center/cover no-repeat;
    color: white;
}

#contact .section-title h2 {
    color: white;
}

#contact .section-title p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-info h4 {
    color: var(--neptune-gold);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info i {
    color: var(--neptune-gold);
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 12px 15px;
}

.contact-form .form-control:focus {
    background: white;
    box-shadow: 0 0 0 0.25rem rgba(0, 90, 180, 0.25);
}

.contact-form textarea.form-control {
    min-height: 150px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--neptune-dark-blue) 0%, var(--neptune-dark) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--neptune-gold);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--neptune-gold);
    transform: translateY(-3px);
}

.footer-links h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-links ul li a:hover {
    color: var(--neptune-gold);
    transform: translateX(5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* WordPress specific styles */
.entry-header,
.entry-content,
.entry-footer {
    margin-bottom: 2rem;
}

.entry-title {
    color: var(--neptune-dark-blue);
    margin-bottom: 1rem;
}

.entry-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-thumbnail {
    margin-bottom: 1.5rem;
}

.post-thumbnail img {
    border-radius: 10px;
}

.page-links {
    margin-top: 2rem;
    font-weight: 600;
}

.post-navigation {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn-neptune, .btn-outline-neptune {
        padding: 10px 25px;
        font-size: 0.9rem;
        margin: 5px 0;
    }

    .btn-outline-neptune {
        margin-left: 0;
    }

    section {
        padding: 4rem 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .highlight {
        padding: 2rem;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .navbar.scrolled {
        padding: 0.6rem 0;
    }

    .team-photo {
        width: 120px;
        height: 120px;
    }
    
    .navbar-brand img {
        height: 60px;
        width: 200px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .about-content h3 {
        font-size: 1.6rem;
    }

    .team-photo {
        width: 100px;
        height: 100px;
    }
}
/* =============================================
   STYLES POUR LA PAGE MENTIONS LEGALES
   ============================================= */

/* Conteneur principal */
.legal-page-container {
    background-color: #f8fafc;
    min-height: 100vh;
}

/* Hero Section */
.legal-hero {
    background: linear-gradient(135deg, var(--neptune-blue, #042b47) 0%, var(--neptune-dark-blue, #003d7a) 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::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 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.legal-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.legal-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.legal-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.divider-line {
    width: 100px;
    height: 2px;
    background: var(--neptune-gold, #c79c46);
}

.divider-icon {
    width: 50px;
    height: 50px;
    background: var(--neptune-gold, #c79c46);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

/* Contenu principal */
.legal-content-section {
    padding: 80px 0;
}

.legal-content-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.legal-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--neptune-blue, #042b47), var(--neptune-gold, #c79c46));
}

/* Sections individuelles */
.legal-section {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #eaeaea;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

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

.section-number {
    background: linear-gradient(135deg, var(--neptune-blue, #042b47) 0%, var(--neptune-dark-blue, #003d7a) 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--neptune-dark-blue, #003d7a);
    margin: 0;
}

.section-body {
    padding-left: 80px;
}

/* Boîtes d'information */
.info-box {
    background: linear-gradient(135deg, rgba(4, 43, 71, 0.05) 0%, rgba(0, 61, 122, 0.05) 100%);
    border-left: 4px solid var(--neptune-blue, #042b47);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.info-box h3, .info-box h4 {
    color: var(--neptune-blue, #042b47);
    margin-bottom: 15px;
}

.info-box p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-box i {
    color: var(--neptune-gold, #c79c46);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Listes stylisées */
.styled-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.styled-list li {
    padding: 12px 0;
    padding-left: 40px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.styled-list li:last-child {
    border-bottom: none;
}

.styled-list li i {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--neptune-blue, #042b47);
}

/* Boîtes spéciales */
.warning-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-left: 4px solid #ff9800;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.warning-box h4 {
    color: #ff9800;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.notice-box {
    background: rgba(0, 123, 255, 0.1);
    border-left: 4px solid #007bff;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.notice-box p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}

.info-note {
    background: rgba(0, 150, 136, 0.1);
    border-left: 4px solid #009688;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.info-note p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}

.warning-note {
    background: rgba(244, 67, 54, 0.1);
    border-left: 4px solid #f44336;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.warning-note p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}

.protection-box {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4caf50;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.protection-box p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}

.authority-box {
    background: rgba(156, 39, 176, 0.1);
    border-left: 4px solid #9c27b0;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.authority-box p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}

/* Responsabilité */
.responsibility-list {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.responsibility-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(108, 117, 125, 0.05);
    border-radius: 8px;
}

.responsibility-item i {
    color: var(--neptune-gold, #c79c46);
    font-size: 1.2rem;
}

/* Sous-sections */
.subsection {
    margin: 30px 0;
}

.subsection-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: var(--neptune-blue, #042b47);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(4, 43, 71, 0.1);
}

/* Grid pour les données */
.data-grid, .rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.data-item, .right-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.data-item:hover, .right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--neptune-blue, #042b47);
}

.data-item i, .right-item i {
    font-size: 2rem;
    color: var(--neptune-blue, #042b47);
    margin-bottom: 10px;
    display: block;
}

.data-item span, .right-item span {
    font-weight: 500;
    color: #333;
}

/* Liste des finalités */
.purpose-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.purpose-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.purpose-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neptune-gold, #c79c46);
    font-weight: bold;
}

/* Base légale */
.legal-basis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.basis-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.basis-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neptune-blue, #042b47) 0%, var(--neptune-dark-blue, #003d7a) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.basis-icon i {
    color: white;
    font-size: 1.5rem;
}

.basis-content h4 {
    color: var(--neptune-blue, #042b47);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.basis-content p {
    color: #666;
    margin: 0;
}

/* Timeline */
.retention-timeline {
    position: relative;
    padding-left: 30px;
    margin: 25px 0;
}

.retention-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--neptune-blue, #042b47), var(--neptune-gold, #c79c46));
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--neptune-gold, #c79c46);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px rgba(199, 156, 70, 0.3);
}

.timeline-content {
    background: rgba(4, 43, 71, 0.03);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--neptune-blue, #042b47);
}

.timeline-content h5 {
    color: var(--neptune-blue, #042b47);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.timeline-content p {
    margin: 0;
    color: #666;
}

/* Contact RGPD */
.contact-rights-box {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(56, 142, 60, 0.1) 100%);
    border-left: 4px solid #4caf50;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.email-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    font-size: 1.2rem;
}

.email-contact a {
    color: var(--neptune-blue, #042b47);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-contact a:hover {
    color: var(--neptune-gold, #c79c46);
    text-decoration: underline;
}

/* Autres éléments */
.cookie-notice, .external-links-note {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(158, 158, 158, 0.05);
    border-radius: 10px;
    margin: 20px 0;
}

.cookie-notice i, .external-links-note i {
    color: var(--neptune-gold, #c79c46);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.jurisdiction-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(194, 24, 91, 0.05) 100%);
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
}

.jurisdiction-flag {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e63, #c2185b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jurisdiction-flag i {
    color: white;
    font-size: 1.8rem;
}

.jurisdiction-content h5 {
    color: #c2185b;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.jurisdiction-content p {
    margin: 0;
    color: #666;
}

/* Date de mise à jour */
.update-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px dashed #ddd;
}

.update-content {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(4, 43, 71, 0.05);
    padding: 25px;
    border-radius: 15px;
}

.update-content i {
    color: var(--neptune-gold, #c79c46);
    font-size: 2rem;
}

.update-content h5 {
    color: var(--neptune-blue, #042b47);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.update-content p {
    margin: 0;
    color: #666;
}

/* Bouton retour */
.legal-back-section {
    padding: 50px 0;
    text-align: center;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--neptune-blue, #042b47) 0%, var(--neptune-dark-blue, #003d7a) 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(4, 43, 71, 0.3);
    border: none;
}

.btn-back-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(4, 43, 71, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-title {
        font-size: 2.5rem;
    }
    
    .legal-subtitle {
        font-size: 1.2rem;
    }
    
    .legal-content-card {
        padding: 30px 20px;
    }
    
    .section-body {
        padding-left: 0;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .data-grid, .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .legal-basis {
        grid-template-columns: 1fr;
    }
    
    .basis-item {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-back-home {
        padding: 12px 30px;
    }
}

@media (max-width: 576px) {
    .legal-hero {
        padding: 80px 0 40px;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .subsection-title {
        font-size: 1.2rem;
    }
    
    .data-grid, .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .divider-line {
        width: 50px;
    }
}

/* Amélioration des liens dans les mentions légales */
.legal-content-card a {
    color: var(--neptune-blue, #042b47);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-content-card a:hover {
    color: var(--neptune-gold, #c79c46);
    border-bottom-color: var(--neptune-gold, #c79c46);
}

/* Correction pour le lien d'accueil PHP */
.legal-back-section a {
    color: white !important;
    text-decoration: none !important;
}