        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f8fa;
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        main {
            flex: 1;
        }
        
        .container {
            max-width: 1200px;
            margin: 100px auto;
            padding: 40px 20px;
        }
        
        .logo h1 {
            font-size: 28px;
            font-weight: 700;
            color: #0d47a1;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            justify-content: center;
            margin-bottom: 40px;
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .section-title {
            font-size: 24px;
            color: #0d47a1;
            margin-bottom: 30px;
            /* Barre de soulignement supprimée */
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #0d47a1;
            box-shadow: 0 0 0 2px rgba(13, 71, 161, 0.2);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: #0d47a1;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .submit-btn:hover {
            background: #1565c0;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: fit-content;
        }
        
        .info-section {
            margin-bottom: 40px;
        }
        
        .info-section h2 {
            font-size: 24px;
            color: #0d47a1;
            margin-bottom: 20px;
            /* Barre de soulignement supprimée */
        }
        
        .info-item {
            margin-bottom: 20px;
        }
        
        .info-item h3 {
            font-size: 18px;
            color: #333;
            margin-bottom: 5px;
        }
        
        .info-item p {
            color: #666;
        }
        
        .divider {
            height: 1px;
            background: #eee;
            margin: 30px 0;
        }
        
        .social-links-contact {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links-contact a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: #0d47a1;
            color: white;
            border-radius: 50%;
            font-size: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-links-contact a:hover {
            transform: translateY(-3px);
        }
        
        /* Footer Styles */
        footer {
            background-color: #21A86A;
            color: #fff;
            padding: 3rem 1.5rem 1.5rem 3rem;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        
        .newsletter-section h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }
        
        .newsletter-section p {
            color: #e0f5e8;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }
        
        .email-input {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .email-input input {
            padding: 0.8rem 1rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
            font-size: 1rem;
            background-color: #21A86A;
            color: #ffffff;
            max-width: 500px;
        }
        
        .email-input input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .email-input input:focus {
            outline: none;
            border-color: #ffffff;
        }
        
        .subscribe-btn {
            background-color: #ffffff;
            color: #21A86A;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            max-width: 150px;
        }
        
        .subscribe-btn:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .privacy-note {
            font-size: 0.8rem;
            color: #c8ead6;
            margin-top: 0.5rem;
        }
        
        .footer-links-section {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        
        .menu-links h3, .footer-social-links h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }
        
        .menu-links ul, .footer-social-links ul {
            list-style: none;
        }
        
        .menu-links li, .footer-social-links li {
            margin-bottom: 0.7rem;
        }
        
        .menu-links a, .footer-social-links a {
            color: #e0f5e8;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .menu-links a:hover, .footer-social-links a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        
        .footer-social-links a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .social-icon {
            width: 20px;
            text-align: center;
        }
        
        .bottom-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            padding-top: 1.5rem;
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .copyright {
            color: #ffffff;
            font-size: 0.9rem;
        }
        
        .legal-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .legal-links a {
            color: #e0f5e8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        
        .legal-links a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-content {
                flex-direction: column;
            }
            
            .contact-form, .contact-info {
                width: 100%;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .email-input {
                flex-direction: column;
            }
            
            .email-input input {
                max-width: 100%;
            }
            
            .footer-links-section {
                grid-template-columns: 1fr;
            }
            
            footer {
                padding-left: 2rem;
            }
            
            .bottom-footer {
                flex-direction: column;
            }
        }
        
        @media (min-width: 992px) {
            .footer-container {
                grid-template-columns: 2fr 1fr 1fr;
            }
            
            footer {
                padding-left: 4rem;
            }
        }