:root {
            --couleur-primaire: #180391;
            --couleur-secondaire: #8B0000;
            --couleur-tertiaire: #e6eaf1;
            --texte-clair: #FFFFFF;
            --texte-sombre: #333333;
            --fond-clair: #F9F6F0;
            --fond-sombre: #FFFFFF;
            --transition: all 0.3s ease;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.12);
            --border-radius: 10px;
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--texte-sombre);
            background-color: var(--fond-clair);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        .navbar {
            background-color: var(--fond-sombre);
            padding: 12px 0;
            transition: var(--transition);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            text-decoration: none;
            padding: 0;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 50px;
            margin-right: 12px;
        }

        .logo-text-container {
            display: flex;
            flex-direction: column;
        }

        .logo-subtext {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--couleur-secondaire);
            margin-top: 2px;
        }

        .navbar-nav .nav-link {
            color: var(--texte-sombre);
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px;
            border-radius: 6px;
            transition: var(--transition);
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--texte-clair);
            background-color: var(--couleur-primaire);
        }

        .navbar-toggler {
            border: none;
            color: var(--couleur-primaire);
            padding: 6px 10px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .apropos-hero {
            background: linear-gradient(135deg, var(--couleur-primaire) 0%, #2a13a3 100%);
            color: var(--texte-clair);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .apropos-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }

        .apropos-hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .apropos-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .section-title {
            position: relative;
            margin-bottom: 40px;
            text-align: center;
        }

        .section-title h2 {
            font-weight: 700;
            color: var(--couleur-primaire);
            display: inline-block;
            padding-bottom: 12px;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 3px;
            background: var(--couleur-secondaire);
            bottom: 0;
            left: 20%;
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1rem;
            color: var(--texte-sombre);
        }

        .apropos-section {
            padding: 60px 0;
        }

        .apropos-content {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .apropos-content:hover {
            box-shadow: var(--box-shadow-hover);
        }

        .apropos-content p {
            font-size: 1rem;
            margin-bottom: 20px;
            color: var(--texte-sombre);
        }

        .gallery-section {
            padding: 60px 0;
            background: var(--couleur-tertiaire);
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            margin-bottom: 20px;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow-hover);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .gallery-item .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        .gallery-item .overlay p {
            color: var(--texte-clair);
            font-size: 1rem;
            font-weight: 500;
            text-align: center;
            padding: 10px;
        }

        footer {
            background: var(--fond-sombre);
            color: var(--texte-sombre);
            padding: 70px 0 25px;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
        }

        .footer-links h5 {
            color: var(--couleur-primaire);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            font-size: 1.2rem;
        }

        .footer-links h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: var(--couleur-secondaire);
        }

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

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: var(--texte-sombre);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .footer-links ul li a:hover {
            color: var(--couleur-primaire);
            padding-left: 5px;
        }

        .copyright {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: var(--texte-sombre);
            font-size: 0.9rem;
        }

        @media (max-width: 767px) {
            .footer-links:not(.contact-section) {
                display: none;
            }
            .footer-links.contact-section {
                text-align: center;
                margin: 0 auto;
                max-width: 300px;
            }
            .footer-links.contact-section h5::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 992px) {
            .apropos-hero h1 {
                font-size: 2.2rem;
            }

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

            .apropos-section, .gallery-section {
                padding: 50px 0;
            }
        }

        @media (max-width: 768px) {
            .apropos-hero {
                padding: 60px 0;
            }

            .apropos-hero h1 {
                font-size: 1.8rem;
            }

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

            .apropos-content {
                padding: 20px;
            }

            .apropos-content h3 {
                font-size: 1.5rem;
            }

            .gallery-item img {
                height: 200px;
            }
        }

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

            .apropos-hero p {
                font-size: 0.9rem;
            }

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

            .gallery-item img {
                height: 150px;
            }
        }

        