        :root {
            --primary: #FF9900; /* AWS Orange */
            --aws-blue: #232F3E;
            --aws-orange: #FF9900;
            --aws-light-blue: #00A1C9;
            --aws-gray: #D4D4D8;
            --aws-light-gray: #F2F3F3;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--aws-blue);
            line-height: 1.6;
            background-color: white;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--aws-blue);
            text-decoration: none;
        }
        
        .logo-circle {
            width: 40px;
            height: 40px;
            background-color: var(--aws-orange);
            border-radius: 50%;
            margin-right: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--aws-blue);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--aws-orange);
        }
        
        .mobile-menu {
            display: none;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--aws-blue) 0%, var(--aws-light-blue) 100%);
            color: white;
            padding: 180px 0 100px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background-color: var(--aws-orange);
            border-radius: 50%;
            opacity: 0.2;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            width: 300px;
            height: 300px;
            background-color: var(--aws-orange);
            border-radius: 50%;
            opacity: 0.1;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-text {
            flex: 1;
            max-width: 600px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            animation: fadeIn 1.5s ease;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--aws-orange);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }
        
        .cta-button:hover {
            background-color: #e68a00;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
        }
        
/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 153, 0, 0.3);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}
 

                /* Expertise */
                .expertise-list {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 15px;
                    margin-top: 30px;
                }
                
                .expertise-item {
                    background-color: rgba(0, 161, 201, 0.1);
                    padding: 10px 20px;
                    border-radius: 50px;
                    font-weight: 500;
                    color: var(--secondary);
                    display: flex;
                    align-items: center;
                }
                
                .expertise-item i {
                    margin-right: 8px;
                    color: var(--primary);
                }
        
        /* Comparison Section */
        .comparison {
            padding: 100px 0;
            background-color: var(--aws-light-gray);
        }
        
        .comparison-cards {
            display: flex;
            gap: 30px;
            margin-top: 50px;
        }
        
        .comparison-card {
            flex: 1;
            background-color: white;
            border-radius: 10px;
            padding: 40px 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .comparison-card:hover {
            transform: translateY(-10px);
        }
        
        .comparison-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .comparison-card h3 i {
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        .bad-option i {
            color: #FF4D4D;
        }
        
        .good-option i {
            color: #4CAF50;
        }
        
        .comparison-card ul {
            list-style: none;
        }
        
        .comparison-card ul li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 25px;
        }
        
        .comparison-card ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--aws-orange);
            font-size: 1.5rem;
            line-height: 1;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background-color: white;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .testimonial-card {
            background-color: var(--aws-light-gray);
            padding: 30px;
            border-radius: 10px;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: var(--aws-orange);
            opacity: 0.2;
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-content {
            position: relative;
            z-index: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .author-info p {
            font-size: 0.9rem;
            color: #666;
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background-color: var(--aws-blue);
            color: white;
        }
        
        .contact .section-title {
            color: white;
        }
        
        .contact-container {
            display: flex;
            gap: 50px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .contact-info p {
            margin-bottom: 30px;
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .contact-details {
            margin-top: 40px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-item i {
            font-size: 1.5rem;
            margin-right: 15px;
            color: var(--aws-orange);
        }
        
        .contact-form {
            flex: 1;
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--aws-blue);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--aws-gray);
            border-radius: 5px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-button {
            background-color: var(--aws-orange);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
            width: 100%;
        }
        
        .submit-button:hover {
            background-color: #e68a00;
        }
        
        /* Floating CTA */
        .floating-cta {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 99;
        }
        
        .floating-cta-button {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--aws-orange);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            box-shadow: 0 5px 20px rgba(255, 153, 0, 0.3);
            text-decoration: none;
            transition: all 0.3s;
            position: relative;
        }
        
        .floating-cta-button:hover {
            transform: scale(1.1);
        }
        
        .floating-cta-text {
            position: absolute;
            white-space: nowrap;
            right: 70px;
            background-color: var(--aws-orange);
            padding: 8px 15px;
            border-radius: 50px;
            font-weight: 600;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .floating-cta-button:hover .floating-cta-text {
            opacity: 1;
        }
        
        /* Footer */
        footer {
            background-color: var(--aws-blue);
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .footer-logo-circle {
            width: 30px;
            height: 30px;
            background-color: var(--aws-orange);
            border-radius: 50%;
            margin-right: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .footer-links {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--aws-orange);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        
        .social-link:hover {
            background-color: var(--aws-orange);
        }
        
        .copyright {
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from { 
                opacity: 0;
                transform: translateY(20px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                margin-bottom: 50px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .comparison-cards {
                flex-direction: column;
            }
            
            .contact-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }

         /* Move reCAPTCHA v3 badge to the left */
 
        .grecaptcha-badge {
            width: 70px !important;
            overflow: hidden !important;
            transition: all 0.3s ease !important;
            left: 4px !important;
        }
        
        .grecaptcha-badge:hover {
            width: 256px !important;
        }

        .demarche-steps {
            display: grid;
            gap: 2rem;
            margin-top: 2rem;
          }
          
          .step {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
          }
          
          .step h3 {
            color: #FF9900; /* Couleur typique AWS */
            margin-bottom: 0.5rem;
          }

          /* Ajout pour le message de confirmation */
        .confirmation-message {
            display: none;
            background: white;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .confirmation-message i {
            font-size: 50px;
            color: #4CAF50;
            margin-bottom: 20px;
        }
        
        .confirmation-message h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .confirmation-message p {
            font-size: 16px;
            color: #555;
        }
          