       :root {
        --color1: #dff6fb;
        --color2: #65b2e2;
        --color3: #687474;
        --color4: #98adb3;
        --color5: #4494d2;
        --color6: #546268;
        --color7: #5e97c1;
        --color8: #c3edfb;
        --color9: #9bdffb;
        --color10: #042c59;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--color6);
            overflow-x: hidden;
        }
        
        /* Toolbar visible sur tous les écrans */
        .toolbar {
            background-color: var(--color10);
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
        }
        
        .toolbar a {
            color: var(--color8);
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .toolbar a:hover {
            color: white;
        }
        
        .btn-webmail {
            background-color: var(--color5);
            color: white;
            border-radius: 20px;
            padding: 3px 15px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-webmail:hover {
            background-color: var(--color10);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        @media (max-width: 767.98px) {
            .toolbar .container > .d-flex {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .toolbar a {
                margin: 3px 0;
                display: block;
                text-align: center;
            }
            
            .toolbar .btn-webmail {
                margin-top: 5px;
            }
        }
        

        .navbar {
            background-color: white !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 12px 0;
            transition: all 0.4s ease;
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            letter-spacing: 0.5px;
            color: var(--color10) !important;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand img {
            height: 2.5em;
            margin-right: 12px;
            transition: transform 0.4s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(10deg) scale(1.1);
        }
        
        .navbar-toggler {
            border: none;
            box-shadow: none !important;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(68, 148, 210, 0.3);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(68, 148, 210, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            width: 1.5em;
            height: 1.5em;
        }
        
        .nav-link {
            color: var(--color10) !important;
            font-weight: 500;
            margin: 0 0.3rem;
            position: relative;
            transition: all 0.3s ease;
            padding: 10px 15px !important;
            border-radius: 8px;
            display: flex;
            align-items: center;
        }
        
        .dropdown-toggle::after {
            display: inline-block !important;
            margin-left: 0.5em;
            vertical-align: 0.15em;
            content: "";
            border-top: 0.4em solid var(--color5);
            border-right: 0.4em solid transparent;
            border-left: 0.4em solid transparent;
            transition: transform 0.3s ease;
        }
        
        .dropdown-toggle.show::after,
        .nav-item.dropdown:hover .dropdown-toggle::after {
            transform: rotate(-180deg);
        }
        
        .nav-link:hover,
        .nav-link.active {
            background-color: var(--color8);
            color: var(--color5) !important;
        }
        
        .dropdown-menu {
            background-color: white;
            border: none;
            border-radius: 12px;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
            padding: 8px 0;
            margin-top: 5px;
            animation: fadeIn 0.25s ease forwards;
            border-left: 4px solid var(--color5);
            min-width: 220px;
            overflow: hidden;
            box-sizing: border-box;
        }
        
        .dropdown-item {
            color: var(--color10);
            padding: 10px 20px;
            transition: background-color 0.2s ease, padding 0.2s ease;
            position: relative;
            font-size: 0.95rem;
            border-radius: 5px;
            margin: 0 8px;
            overflow: hidden;
        }
        
        .dropdown-item:hover {
            background-color: var(--color9);
            color: var(--color5);
            padding-left: 30px;
        }
        
        .dropdown-item:hover::before {
            content: "→";
            position: absolute;
            left: 12px;
            color: var(--color5);
            font-weight: bold;
        }
        
        .dropdown-divider {
            border-color: rgba(0, 0, 0, 0.08);
            margin: 8px 15px;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (min-width: 992px) {
            .nav-item.dropdown {
                position: relative;
            }
        
            .nav-item.dropdown:hover .dropdown-menu {
                display: block;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        
            .dropdown-menu {
                display: block;
                opacity: 0;
                visibility: hidden;
                transform: translateY(10px);
                transition: all 0.3s ease, visibility 0s linear 0.3s;
                position: absolute;
                left: 0;
            }
        
            .dropdown-menu::before {
                content: '';
                position: absolute;
                top: -10px;
                left: 0;
                width: 100%;
                height: 20px;
                background: transparent;
            }
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: white;
                padding: 15px;
                margin-top: 15px;
                border-radius: 15px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
            }
        
            .nav-item {
                margin: 8px 0;
            }
        
            .dropdown-menu {
                border-left: none;
                box-shadow: none;
                background-color: rgba(255, 255, 255, 0.95);
                margin-top: 5px;
                margin-left: 15px;
                animation: none;
                border-radius: 8px;
            }
        
            .dropdown-item {
                padding: 8px 15px;
            }
        
            .dropdown-toggle::after {
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
            }
        }

        .hero-section {
            background: linear-gradient(rgba(4, 44, 89, 0.85), rgba(4, 44, 89, 0.9)), url('https://ppsm-burundi.org/img/slider.png') center/cover no-repeat;
            color: white;
            padding: 120px 0 100px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 700px;
        }

        .section-title {
            color: var(--color10);
            font-weight: 700;
            position: relative;
            margin-bottom: 40px;
            text-align: center;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--color5);
            border-radius: 2px;
        }

        .section {
            padding: 80px 0;
        }

        .section-bg {
            background-color: var(--color1);
        }

        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .card-img-top {
            height: 200px;
            object-fit: cover;
        }

        .card-title {
            color: var(--color10);
            font-weight: 700;
        }

        .btn-primary {
            background-color: var(--color5);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            background-color: var(--color10);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(4, 44, 89, 0.3);
        }

        .btn-outline-primary {
            border-color: var(--color5);
            color: var(--color5);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-outline-primary:hover {
            background-color: var(--color5);
            color: white;
        }

        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--color6);
            margin-bottom: 25px;
        }

        .testimonial-author {
            color: var(--color10);
            font-weight: 600;
        }

        .event-date {
            background: var(--color5);
            color: white;
            padding: 10px 15px;
            border-radius: 8px;
            font-weight: 600;
            position: absolute;
            top: 15px;
            left: 15px;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 25px;
            height: 250px;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(4, 44, 89, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .contact-info {
            background: var(--color10);
            color: white;
            padding: 40px;
            border-radius: 12px;
            height: 100%;
        }

        .contact-info-item {
            margin-bottom: 30px;
        }

        .contact-icon {
            font-size: 1.8rem;
            color: var(--color5);
            margin-bottom: 15px;
        }

        .footer {
            background: var(--color10);
            color: white;
            padding-top: 80px;
        }

        .footer-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 30px;
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--color5);
        }

        .footer-links a {
            display: block;
            color: var(--color8);
            text-decoration: none;
            margin-bottom: 12px;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-social a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            margin-right: 10px;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: var(--color5);
            transform: translateY(-5px);
        }

        .footer-bottom {
            background: rgba(0,0,0,0.1);
            padding: 20px 0;
            margin-top: 60px;
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 50px 0 0 50px;
        }

        .newsletter-form button {
            background: var(--color5);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            font-weight: 600;
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--color5);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
            z-index: 1000;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .psychologist-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 12px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
        }

        .psychologist-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .psychologist-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--color1);
            margin: 0 auto 20px;
        }

        .counter-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 12px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            transition: all 0.3s;
        }

        .counter-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .counter-icon {
            font-size: 2.5rem;
            color: var(--color5);
            margin-bottom: 15px;
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color10);
            margin-bottom: 10px;
        }

        /* Section Services */
        .service-card {
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(101, 178, 226, 0.2);
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(101, 178, 226, 0.15);
        }

        .service-icon {
            color: var(--color5);
            transition: transform 0.3s;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        /* Section Blogs & Publications */
        .featured-post {
            border: none;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            overflow: hidden;
            border-radius: 12px;
        }

        .featured-post .card-title {
            font-size: 1.8rem;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .badge {
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 20px;
        }

        /* Section Suggestion */
        .suggestion-section {
            background: linear-gradient(135deg, var(--color1) 0%, var(--color8) 100%);
        }

        .suggestion-form {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 40px;
        }

        /* Section Webmail */
        .webmail-section {
            background: linear-gradient(135deg, var(--color10) 0%, var(--color5) 100%);
            color: white;
        }

        .btn-webmail-section {
            background-color: white;
            color: var(--color10);
            border-radius: 50px;
            padding: 12px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-webmail-section:hover {
            background-color: var(--color8);
            color: var(--color10);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255,255,255,0.3);
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .section {
                padding: 60px 0;
            }

            /* Désactiver le hover sur mobile */
            .dropdown-menu {
                display: none;
            }
            .dropdown.show .dropdown-menu {
                display: block;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
        }

