* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Top Social Bar */
        .topbar {
            background: #003366;
            padding: 8px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1001;
        }

        .topbar-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        .social-btn {
            width: 32px;
            height: 32px;
            background: #FDB714;
            color: #003366;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px;
            text-decoration: none;
            font-size: 14px;
            transition: transform 0.3s;
        }

        .social-btn:hover {
            transform: translateY(-2px);
        }

        /* Header */
        header {
            background: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 48px;
            width: 100%;
            z-index: 1000;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 60px;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        nav a {
            text-decoration: none;
            color: #666;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: #003366;
        }

        nav a.active {
            color: #003366;
        }
        .menu-item {
    position: relative;
    display: inline-block;
    }

    .selectZone {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 20px;
    display: inline-block;
    position: relative;
    }

    /* underline effect */
    .selectZone::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: #f4b400;
    transition: width 0.3s ease;
    }

    .menu-item:hover .selectZone::after {
    width: 100%;
    }

    /* DROPDOWN */
    .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e1e1e;
    min-width: 240px;
    display: none;
    flex-direction: column;
    z-index: 1000;
    }

    .dropdown li {
    list-style: none;
    }

    .dropdown a {
    display: block;
    padding: 12px 20px;
    color: #cfcfcf;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    }

    .dropdown a:hover {
    background: #2a2a2a;
    color: #fff;
    }



    .menu {
    list-style: none;
    }

    .menu-item:hover .dropdown {
    display: block;
    }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #FDB714;
        }
        .lang-switcher {
            display: flex;
            gap: 10px;
        }

        .lang-switcher img {
            width: 24px;
            height: 18px;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .lang-switcher img:hover {
            opacity: 1;
        }
         .logo{
        width: 250px;
        height: 80px;
        margin-left: 30px;
    }


        /* Hero Section */
        .moyens-hero {
            margin-top: 128px;
            background: linear-gradient(135deg, #003366 0%, #004d99 100%);
            padding: 120px 40px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .moyens-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600') center/cover;
            opacity: 0.1;
        }

        .moyens-hero h1 {
            font-size: 64px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        /* Enquetes Telephoniques Section */
        .telephoniques-sect {
            padding: 80px 40px;
            background: #F5F5F5;
        }

        .telephoniques-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .telephoniques-img img {
            width: 100%;
            border-radius: 8px;
        }

        .telephoniques-txt h2 {
            font-size: 38px;
            color: #003366;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .telephoniques-txt p {
            font-size: 16px;
            line-height: 1.9;
            color: #666;
            margin-bottom: 15px;
        }

        .telephoniques-txt strong {
            color: #003366;
            font-weight: 600;
        }

        /* Proposons Section */
        .proposons-sect {
            padding: 60px 40px;
            background: white;
        }

        .proposons-title {
            text-align: center;
            font-size: 36px;
            color: #003366;
            margin-bottom: 60px;
            font-weight: 700;
        }

        .proposons-items {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }

        .proposons-card {
            text-align: center;
        }

        .proposons-card h3 {
            font-size: 20px;
            color: #003366;
            line-height: 1.5;
            font-weight: 600;
        }

        .proposons-card .italic-text {
            font-style: italic;
        }

        /* Face a Face Section */
        .faceaface-sect {
            padding: 80px 40px;
            background: white;
        }

        .faceaface-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .faceaface-txt h2 {
            font-size: 38px;
            color: #003366;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .faceaface-txt p {
            font-size: 16px;
            line-height: 1.9;
            color: #666;
            margin-bottom: 15px;
        }

        .faceaface-txt strong {
            color: #003366;
            font-weight: 600;
        }

        .faceaface-img img {
            width: 100%;
            border-radius: 8px;
        }

        /* Proposons 2 Section */
        .proposons2-sect {
            padding: 60px 40px 80px;
            background: white;
        }

        /* Enquete Papier Section */
        .papier-sect {
            padding: 80px 40px;
            background: white;
        }

        .papier-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .papier-img img {
            width: 100%;
            border-radius: 8px;
        }

        .papier-txt h2 {
            font-size: 38px;
            color: #003366;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .papier-txt p {
            font-size: 16px;
            line-height: 1.9;
            color: #666;
            margin-bottom: 15px;
        }

        /* Sources Section */
        .sources-sect {
            padding: 80px 40px;
            background: #F5F5F5;
        }

        .sources-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .sources-txt h2 {
            font-size: 38px;
            color: #003366;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .sources-txt p {
            font-size: 16px;
            line-height: 1.9;
            color: #666;
            margin-bottom: 15px;
        }

        .sources-txt strong {
            color: #003366;
            font-weight: 600;
        }

        .sources-img img {
            width: 100%;
            border-radius: 8px;
        }

        /* Footer */
        .page-footer {
            background: #2d2d2d;
            color: white;
            padding: 60px 40px 30px;
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-about h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .footer-about p {
            font-size: 15px;
            line-height: 1.8;
            color: #ccc;
            margin-bottom: 25px;
        }

        .footer-socials {
            display: flex;
            gap: 10px;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            background: #444;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px;
            text-decoration: none;
            transition: background 0.3s;
        }

        .footer-social-link:hover {
            background: #FDB714;
        }

        .footer-menu h3 {
            font-size: 22px;
            margin-bottom: 25px;
        }

        .footer-menu ul {
            list-style: none;
        }

        .footer-menu ul li {
            margin-bottom: 12px;
        }

        .footer-menu ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
        }

        .footer-menu ul li a:hover {
            color: #FDB714;
        }

        .footer-contact h3 {
            font-size: 22px;
            margin-bottom: 25px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            padding: 12px 15px;
            background: #3d3d3d;
            border: none;
            border-radius: 5px;
            color: white;
            font-size: 14px;
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        .contact-form button {
            padding: 12px 30px;
            background: #FDB714;
            color: #003366;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .contact-form button:hover {
            transform: translateY(-2px);
        }

        .footer-copy {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #999;
            font-size: 14px;
        }

        /* Scroll to Top */
        .scroll-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #003366;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s;
            z-index: 100;
        }

        .scroll-btn.show {
            opacity: 1;
        }

        .scroll-btn:hover {
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                gap: 20px;
            }

            .main-nav {
                flex-wrap: wrap;
                justify-content: center;
            }

            .telephoniques-grid,
            .faceaface-grid,
            .papier-grid,
            .sources-grid {
                grid-template-columns: 1fr;
            }

            .proposons-items {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }