/* Reset et styles de base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #ffffff;
            background-image: url(img/background.svg);
            background-size: cover;
            width: 100%
            
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        p {
            font-size: 22px;
        }

        .container {
            width: 90%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header et navigation */
        header {
            background-color: #e63946;
            color: white;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
        }
        
        .logo span {
            color: white;
        }
        
        /* Navigation pc */
        .nav-desktop {
            display: flex;
        }
        
        .nav-desktop ul {
            display: flex;
            list-style: none;
        }
        
        .nav-desktop li {
            margin-left: 30px;
        }
        
        .nav-desktop a {
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-desktop a:hover {
            color: #f1faee;
        }
        
        .nav-desktop a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: white;
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }
        
        .nav-desktop a:hover::after {
            width: 100%;
        }
        
        /* Navigation mobile */
        .nav-mobile {
            display: none;
        }
        
        .menu-toggle {
            font-size: 45px;
            cursor: pointer;
        }
        
        .mobile-menu {
            position: fixed;
            top: 90px;
            left: 0;
            width: 100%;
            background-color: #e63946;
            padding: 20px;
            transform: translateY(-150%);
            transition: transform 0.4s ease-in-out;
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
            z-index: 999;
        }
        
        .mobile-menu.active {
            transform: translateY(0);
        }
        
        .mobile-menu ul {
            list-style: none;
        }
        
        .mobile-menu li {
            margin-bottom: 20px;
            text-align: center;
        }
        
        .mobile-menu a {
            font-size: 18px;
            color: white;
            font-weight: 500;
        }
        
    /* Héro section */
        .hero {
            height: 100vh;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/accueil.jpeg'); /*'https://placehold.co/1920x1080'*/
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 70px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 380%;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 140%;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: #e63946;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s;
            border: 2px solid #e63946;
        }
        
        .btn:hover {
            background-color: transparent;
            color: white;
        }

        .btn1 {
            display: inline-block;
            background-color: #e63946;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 20px;
            transition: all 0.3s;
            border: 2px solid #e63946;
        }
        
        .btn1:hover {
            background-color: transparent;
            color: black;
        }
        
    /* Sections communes */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #e63946;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: #e63946;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
    /* À propos section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
    /* Services section */
        .services-grid {
            display: grid;
            justify-content: center;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            text-align: center;
            padding: 30px;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            font-size: 40px;
            color: #e63946;
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #e63946;
        }

    /* Prestation Section */
        
    table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      border-radius: 10px;
      overflow: hidden;
    }
    thead {
      background: #f5d8d8;
      color: white;
    }
    th, td {
      padding: 12px;
      text-align: center;
      border: none;
    }
    th {
      font-size: 14px;
      background-color: rgb(219, 49, 49);
      color: white;
    }
    th span {
      display: block;
      font-size: 20px;
      font-weight: normal;
      color: #fff;
      margin-top: 4px;
    }
    td:first-child {
      background: #fafafa;
      text-align: left;
    }
    .check {
      color: #2e7d32; /* vert plus doux */
      font-size: 16px;
    }
    .cross {
      color: #c62828; /* rouge plus élégant */
      font-size: 16px;
    }

    /* FAQ section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .faq-item {
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid #e7636e;
            margin-bottom: 2rem;
            border-radius: 5px;
        }
        
        .faq-question:hover {
            transition: #fcd7da 1s ease-out;
            
        }

        .faq-question {
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: bold;
            font-size: 18px;
        }

        .faq-question::after {
            content: '<';
            
            font-size: 22px;
            transition: transform 0.2s ease;
        }
        
        .faq-question.active::after {
            content: '-';
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 1rem;
            transition: max-height 0.3s ease;
        }

        .faq-answer p {
            font-size: 18px;
        }
        
        .faq-question.active + .faq-answer {
            max-height: 200px;
            padding: 0 1rem 1rem;
        }

    /* Contact section */
        .contact-container {
            display: flex;
            gap: 50px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-form {
            flex: 1;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .info-icon {
            font-size: 20px;
            color: #e63946;
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .info-content h3 {
            font-size: 20px;
            margin-bottom: 5px;
        }
        
        form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group.full-width {
            grid-column: span 2;
        }
        
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        input,
        textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        
        textarea {
            height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: #e63946;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 89%;
            transition: background-color 0.3s;
        }
        
        .submit-btn:hover {
            background-color: #c1121f;
        }
        
        /* Footer */
        footer {
            background-color: #343a40;
            color: white;
            padding: 50px 0 20px;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }

        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 2px;
            background-color: #e63946;
            bottom: 0;
            left: 0;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: #e63946;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: #e63946;
            transform: translateY(-3px);
        }
        
        .copyright {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
        }
        
        /* Rendez-vous section */
        .booking-container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .booking-form .form-group {
            margin-bottom: 25px;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .form-header h3 {
            font-size: 28px;
            color: #e63946;
            margin-bottom: 10px;
        }
        
        .form-header p {
            color: #666;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            background-color: white;
            appearance: none;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .contact-container {
                flex-direction: column;
            }
            
            .booking-container {
                padding: 30px;
            }
        }
        
        @media (max-width: 1050px) {
            .nav-desktop {
                display: none;
            }

            .nav-mobile {
                display: block;
            }
            
            .hero h1 {
                font-size: 360%;
            }
            
            .hero p {
                font-size: 240%;
            }
            
            .section-title h2 {
                font-size: 56px;
            }
            
            .faq-question {
            font-size: 25px;
            }

            .faq-answer p {
            font-size: 22px;
            }

            form {
                grid-template-columns: 1fr;
            }
            
            .form-group.full-width {
                grid-column: span 1;
            }
            
            .footer-column p {
            font-size: 17px;
        }


            .form-row {
                flex-direction: column;
                gap: 0;  
            }

            .bigit {
                padding: 24px;
            }

            .bigtextform {
                font-size: 152%;
            }

            .submit-btn {
            font-size: 150%;
        }
        }


        .info-content h3 {
            font-size: 30px;
        }

        .info-content p {
            font-size: 23px;
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }

            .booking-container {
                padding: 20px 15px;
            }
        }

     @media (min-width: 1050px) {
      .pcpc {
        display: none;
      }
    }

    @media (max-width: 1050px) {
 
      .momo {
        display: none;
      }
      
      .container-presta {
            width: 90%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 15px;
        }

      .presta-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            padding: 30px;
        }
      
      .section-title-presta {
            text-align: center;
        }
      
      .section-title-presta h2 {
            font-size: 36px;
            color: #e63946;
            position: relative;
            display: inline-block;
        }

        .presta-card h3 {
            font-size: 25px;
        }

      .separate {
        margin: 0 auto;
        background-color: #e63946;
        width: 5%;
        padding: 0.3%;
        border-radius: 5px;
      }


      ul {
        list-style: none;
      }

      .line {
            margin: 0 auto;
            justify-content: center;
            display: flex;
            flex-direction: line;
            align-items: center;
            gap: 50px;
        }
        .p1 {
                    font-size: 17px;
                }
      
    }