        /* Ajout des styles de base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Modification des variables pour plus de cohérence */
        :root {
            --primary-color: #ED6A6D;
            --secondary-color: #4ECDC4;
            --dark-color: #2C3E50;
            --light-color: #F7F9FC;
            --white-color: #ffffff;
            --text-color: #444444;
        }

        /* Ajustement du header */
        header {
            position: relative;
            background: transparent;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
        }

        /* Ajustement de la navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: white;
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo-container img {
            max-width: 250px;
            height: auto;
        }

        nav a,
        .logo span {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--primary-color);
        }

        /* Ajustement des sections */
        .section {
            padding: 5rem 2rem;
        }

        /* Ajustement des cartes */
        .product-card, .service-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .product-card:hover, .service-card:hover {
            transform: translateY(-10px);
        }

        /* Ajustement du formulaire */
        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        /* Ajustement du responsive */
        @media (max-width: 768px) {
            nav ul {
                display: none;  /* Le menu sera géré par JavaScript pour mobile */
            }

            .product-grid, .service-grid {
                grid-template-columns: 1fr;
            }

            header h1 {
                font-size: 2rem;
            }
        }

        /* Ajout des styles pour les grilles */
        .product-grid, .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--light-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        header h1 {
            font-size: 4rem;
            color: var(--dark-color);
            margin: 0;
            text-shadow: none;
        }

        header p {
            font-size: 1.5rem;
            color: var(--text-color);
            margin: 1rem 0;
            max-width: 600px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 3rem;
        }

        .advantages {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .advantage {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .advantage:hover {
            transform: translateY(-10px);
        }

        .advantage i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .advantage h3 {
            color: var(--dark-color);
            margin: 1rem 0;
        }

        form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            max-width: 600px;
            margin: 0 auto;
        }

        form input, form textarea {
            width: 100%;
            padding: 1rem;
            margin: 0 0 0;
            border: 2px solid #eee;
            border-radius: 10px;
            transition: border-color 0.3s ease;
        }

        form input:focus, form textarea:focus {
            border-color: var(--secondary-color);
            outline: none;
        }

        form button {
            background: var(--primary-color);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
            width: 100%;
        }

        form button:hover {
            background: var(--secondary-color);
        }

        footer {
            background: var(--dark-color);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        footer a {
            color: var(--secondary-color);
            text-decoration: none;
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 2.5rem;
            }
            
            header p {
                font-size: 1.2rem;
            }
            
            .container {
                padding: 2rem 1rem;
            }
        }

        .contact-section {
            background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(78,205,196,0.1));
            padding: 6rem 0;
            margin-top: 4rem;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-info h2 {
            text-align: left;
            margin-bottom: 2rem;
        }

        .contact-details {
            margin-bottom: 2rem;
        }

        .contact-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            display: flex;
            align-items: flex-start;
        }

        .contact-item i {
            font-size: 2rem;
            color: white;
            margin-right: 1.5rem;
            width: auto;
            height: auto;
            background: none;
            border-radius: 0;
            box-shadow: none;
            display: inline;
            justify-content: initial;
        }
        
        .contact-item > i {
        	color: var(--primary-color) !important;	
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-form h3 {
            color: var(--dark-color);
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }

        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .contact-info {
                text-align: center;
            }
            
            .contact-info h2 {
                text-align: center;
            }
        }

        /* Section Coordonnées */
        .coordinates-section {
            background-color: var(--light-color);
            padding: 5rem 0;
        }

        .contact-details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .contact-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            display: flex;
            align-items: flex-start;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
        }

        .contact-item i {
            font-size: 2rem;
            color: white;
            margin-right: 1.5rem;
        }

        .contact-text h3 {
            margin: 0 0 0.5rem 0;
            color: var(--dark-color);
            font-size: 1.2rem;
        }

        .contact-text p {
            margin: 0;
            color: var(--text-color);
        }

        /* Section Formulaire de Contact */
        .contact-form-section {
            padding: 5rem 0;
            background-color: var(--primary-color);
            color: white;
            margin: 0;
        }

        .contact-form-section h2 {
            color: white;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            padding: 0;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: calc(100% - 2rem);
            padding: 1rem;
            border: 2px solid #eee;
            border-radius: 10px;
            transition: border-color 0.3s ease;
            box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--secondary-color);
            outline: none;
        }

        @media (max-width: 768px) {
            .contact-details {
                grid-template-columns: 1fr;
            }
            
            .contact-form {
                margin: 0 1rem;
                padding: 0;
            }
        }

        header .logo {
            max-width: 350px;
            height: auto;
        }
        

        @media (max-width: 768px) {
            header .logo {
                max-width: 350px;
            }
        }

        .cta-button {
            display: inline-block;
            background-color: white;
            color: var(--primary-color);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            background-color: var(--secondary-color);
            color: white;
        }

        @media (max-width: 768px) {
            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .cta-button-outline {
            background-color: transparent;
            border: 2px solid white;
            color: white;
        }

        .cta-button-outline:hover {
            background-color: white;
            color: var(--primary-color);
        }

        @media (max-width: 768px) {
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        .location-section {
            padding: 5rem 0;
            background-color: var(--light-color);
        }

        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .location-text {
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .location-text h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .location-text ul {
            list-style: none;
            padding: 0;
        }

        .location-text li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .location-text li i {
            color: var(--secondary-color);
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .location-map {
            width: 100%;
            height: 100%;
            min-height: 450px;
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        @media (max-width: 768px) {
            .location-content {
                grid-template-columns: 1fr;
            }
            
            .location-map {
                min-height: 300px;
            }
        }

        .contact-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .contact-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            background-color: var(--secondary-color);
        }

        .contact-button i {
            margin-right: 0.5rem;
            font-size: 1em;
        }

        .contact-text {
            display: flex;
            flex-direction: column;
        }

        html {
            scroll-behavior: smooth;
        }

        .contact-button-floating {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .contact-button-floating:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            background-color: var(--secondary-color);
        }

        .contact-form-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .contact-form-popup.active {
            display: flex;
        }

        .contact-form {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            max-width: 600px;
            box-sizing: border-box;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: calc(100% - 2rem);
            padding: 1rem;
            border: 2px solid #eee;
            border-radius: 10px;
            transition: border-color 0.3s ease;
            box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--secondary-color);
            outline: none;
        }

        .contact-form button {
            background: var(--primary-color);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
            width: 100%;
        }

        .contact-form button:hover {
            background: var(--secondary-color);
        }

        h2 {
            text-align: center;
        }

        .coordinates-section h2,
        .location-section h2,
        .contact-form-section h2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        .coordinates-section h2 {
            color: var(--primary-color);
        }

        .location-section h2 {
            color: var(--primary-color);
        }

        .contact-form-section h2 {
            color: white;
        }

        /* Modification du style pour le reCAPTCHA */
        .grecaptcha-badge {
            display:none !important;
            left: 20px !important;
            right: auto !important;
            width: 70px !important;
            height: 70px !important;
            overflow: hidden !important;
            border-radius: 4px !important;
        }

        .hero {
            background: linear-gradient(135deg, #FFF5F5 0%, #ffffff 100%);
            display: flex;
            padding: 0 5%;
            align-items: center;
            position: relative;
        }

        .hero-content {
            max-width: 600px;
            margin-right: auto;
            padding: 4rem 0;
            text-align: left;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #2C3E50;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-price {
            background: var(--secondary-color);
            color: var(--white-color);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            display: inline-block;
            margin: 1rem 0;
            font-weight: 500;
        }

        .hero-features {
            margin: 2rem 0;
            text-align: left;
        }

        .hero-features li {
            list-style: none;
            margin: 1rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
            color: #666;
        }

        .hero-features li i {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }

        .hero-image {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 45%;
            max-width: 600px;
            height: auto;
        }

        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding-top: 50px;
            }
            
            .hero-content {
                margin: 0 auto;
                text-align: center;
                padding: 2rem 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .hero-image {
                position: relative;
                width: 100%;
                max-width: 400px;
                margin: 2rem auto;
                right: auto;
                transform: none;
                top: auto;
            }
            
            .hero-features {
                text-align: center;
            }
            
            .hero-features li {
                justify-content: center;
            }
            
            .hero-rating {
                justify-content: center;
            }
        }

        /* Styles pour la section Produits */
        .products-section, .services-section {
            padding: 5rem 0;
            background: var(--light-color);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-color);
            margin-bottom: 3rem;
            font-size: 1.2rem;
        }

        .products-grid, .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 0 auto;
            max-width: 1200px;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--primary-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
        }

        .product-content {
            padding: 2rem;
        }

        .product-features {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }

        .product-features li {
            margin: 0.5rem 0;
            color: var(--text-color);
        }

        .product-features i {
            color: var(--secondary-color);
            margin-right: 0.5rem;
        }

        .product-price {
            margin: 1.5rem 0;
        }

        .price {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .period {
            color: var(--text-color);
        }

        .product-button {
            width: 100%;
            padding: 1rem;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .product-button:hover {
            background: var(--secondary-color);
        }

        /* Styles pour la section Services */
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            margin: 0 auto 1.5rem auto;
        }

        .service-icon i {
            font-size: 2rem;
            color: white;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 0 0;
            display: grid;
            gap: 1rem;
            justify-content: center;
            text-align: center;
        }

        .service-features li {
            font-size: 0.9rem;
            color: var(--text-color);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            justify-content: center;
        }

        .service-features i {
            color: var(--secondary-color);
        }

        @media (max-width: 768px) {
            .products-grid, .services-grid {
                grid-template-columns: 1fr;
                padding: 0 1rem;
            }
            
            .service-features {
                grid-template-columns: 1fr;
            }
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
        }

        .primary-button, .secondary-button {
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .primary-button {
            background: var(--primary-color);
            color: white;
            box-shadow: 0 4px 15px rgba(237, 106, 109, 0.3);
        }

        .secondary-button {
            background: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .primary-button:hover, .secondary-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .hero-rating {
            margin-top: 2rem;
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .trust-badge {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .trust-count {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark-color);
        }

        .trust-text {
            font-size: 0.9rem;
            color: var(--text-color);
        }

        .rating-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .rating-stars {
            color: #FFD700;
        }

        .rating-stars i {
            margin-right: 2px;
        }

        .rating-score {
            font-weight: 700;
            color: var(--dark-color);
        }

        @media (max-width: 768px) {
            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            
            .hero-rating {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .trust-badge {
                align-items: center;
            }

            .primary-button, .secondary-button {
                display: block;
            }
        }

        /* Styles pour la section des étapes */
        .steps-section {
            padding: 5rem 2rem;
            background: var(--light-color);
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .step-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-10px);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .step-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }

        .step-card h3 {
            color: var(--dark-color);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .step-card p {
            color: var(--text-color);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Style pour la ligne de connexion entre les étapes */
        .steps-container::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--secondary-color);
            opacity: 0.2;
            z-index: 0;
        }

        @media (max-width: 768px) {
            .steps-container {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
            
            .step-card {
                margin-top: 2rem;
            }
            
            .steps-container::before {
                display: none;
            }
        }

        /* Styles pour la page de réservation */
        .reservation-hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a8c 100%);
            color: white;
            text-align: center;
            padding: 4rem 0;
        }

        .reservation-hero h1 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 3rem;
        }

        .steps-timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem;
        }

        .steps-timeline::before {
            content: '';
            position: absolute;
            top: 3rem;
            left: 0;
            right: 0;
            height: 2px;
            background: rgba(255, 255, 255, 0.3);
            z-index: 1;
        }

        .step-item {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .step-item.active .step-number {
            background: var(--secondary-color);
            color: white;
        }

        .step-icon {
            font-size: 2rem;
            color: white;
        }

        .step-content h3 {
            color: white;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .slogan {
            color: var(--text-color);
            font-size: 1.1rem;
            font-style: italic;
        } 

        .step-content p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .step-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 3rem;
        }

        .reservation-form {
            padding: 4rem 0;
            background: var(--light-color);
        }

        .form-progress {
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .progress-bar {
            height: 8px;
            background: #e0e0e0;
            border-radius: 4px;
            margin-bottom: 1.5rem;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
        }

        .progress-step {
            text-align: center;
            color: #666;
        }

        .progress-step.current {
            color: var(--secondary-color);
            font-weight: 600;
        }

        .step-label {
            font-size: 0.9rem;
        }

        .multi-step-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        @media (max-width: 768px) {
            .steps-timeline {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .steps-timeline::before {
                display: none;
            }

            .step-item {
                background: rgba(255, 255, 255, 0.1);
                padding: 2rem;
                border-radius: 15px;
            }

            .progress-steps {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .partners-section .container > div {
                flex-direction: column;
                text-align: center;
            }
            
            .partners-section ul {
                flex-direction: column;
                align-items: center;
            }
        }
