
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
        }

        /* Header */
        header {
            background: #fff;
            padding: 1.2rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: #c4a77d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #fff;
            line-height: 1;
        }

        .logo-icon i {
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .logo-text h1 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #c4a77d;
            margin: 0;
        }

        .logo-text p {
            font-size: 0.75rem;
            color: #6b7280;
            margin: 0;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: #4b5563;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: #c4a77d;
        }

        .btn-commencer {
            background: #c4a77d;
            color: #ffffff !important;
            padding: 0.4rem 1rem;
            border-radius: 6px;
            text-decoration: none;
            transition: background 0.3s;
            font-size: 0.85rem;
            font-weight: bold;
        }

        .btn-commencer:hover {
            background: #b89968;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: #1a1a1a;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(to bottom, #faf8f5 0%, #fff 100%);
            padding: 12rem 2rem 8rem;
            margin-top: 60px;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.3;
        }

        .hero-text p {
            font-size: 0.95rem;
            color: #4b5563;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
        }

        .btn-primary {
            background: #c4a77d;
            color: #fff;
            padding: 0.6rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            font-weight: bold;
            box-shadow: 0 4px 12px rgba(196, 167, 125, 0.3);
        }

        .btn-primary:hover {
            background: #b89968;
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 20px rgba(196, 167, 125, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: #1a1a1a;
            padding: 0.6rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid #1a1a1a;
            font-size: 0.9rem;
            font-weight: bold;
        }

        .btn-secondary:hover {
            background: #1a1a1a;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(26, 26, 26, 0.2);
        }

        .hero-image {
            background: #e5e7eb;
            border-radius: 15px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(196, 167, 125, 0.25);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .hero-image:hover img {
            transform: scale(1.02);
        }

        /* Services Section */
        .services {
            padding: 4rem 2rem;
            background: #fff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        h2 {
            font-size: 1.3rem;
            text-align: center;
            margin-bottom: 0.8rem;
            color: #1a1a1a;
        }

        .section-subtitle {
            text-align: center;
            color: #6b7280;
            margin-bottom: 2.5rem;
            font-size: 0.9rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: #fff;
            padding: 1.8rem;
            border-radius: 10px;
            border: 1px solid #e5e7eb;
            transition: all 0.3s;
        }

        .service-card:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            transform: translateY(-3px);
        }

        .service-icon {
            width: 45px;
            height: 45px;
            background: #faf5ef;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: #c4a77d;
        }

        .service-card h3 {
            font-size: 1rem;
            margin-bottom: 0.8rem;
            color: #1a1a1a;
        }

        .service-card p {
            color: #6b7280;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, #c4a77d 0%, #d4b896 50%, #c4a77d 100%);
            padding: 2.5rem 2rem;
            color: #fff;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .stat-item:nth-child(1) { animation-delay: 0.1s; }
        .stat-item:nth-child(2) { animation-delay: 0.2s; }
        .stat-item:nth-child(3) { animation-delay: 0.3s; }
        .stat-item:nth-child(4) { animation-delay: 0.4s; }

        .stat-number {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #fff;
        }

        .stat-label {
            font-size: 0.95rem;
            color: #fff;
            opacity: 0.95;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Gallery Section */
        .gallery {
            padding: 4rem 2rem;
            background: #fff;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            aspect-ratio: 1;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        /* About Section */
        .about {
            padding: 4rem 2rem;
            background: #f8fafc;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            background: #e5e7eb;
            border-radius: 12px;
            height: 400px;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-text h2 {
            text-align: left;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }

        .about-text p {
            color: #4b5563;
            margin-bottom: 1.2rem;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Contact Section */
        .contact {
            padding: 4rem 2rem;
            background: #fff;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-form {
            background: #fff;
            border: 1px solid #e5e7eb;
            padding: 2.5rem;
            border-radius: 12px;
        }

        .contact-form h3 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .contact-form p {
            color: #6b7280;
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
            font-family: inherit;
            transition: border-color 0.3s;
            background: #f9fafb;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #c4a77d;
            background: #fff;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 0.65rem;
            background: #c4a77d;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: #b89968;
        }

        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .info-card {
            background: #fff;
            border: 1px solid #e5e7eb;
            padding: 2rem;
            border-radius: 12px;
        }

        .info-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.5rem;
        }

        .info-icon {
            width: 45px;
            height: 45px;
            background: #faf5ef;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #c4a77d;
            line-height: 1;
        }

        .info-icon i {
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .info-card h4 {
            font-size: 1rem;
            color: #1a1a1a;
        }

        .info-card p {
            color: #4b5563;
            margin-left: 60px;
        }

        .hours-card {
            background: #c4a77d;
            color: #fff;
            padding: 2rem;
            border-radius: 12px;
        }

        .hours-card h3 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .hours-card p {
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: #c4a77d;
            color: #fff;
            text-decoration: none;
            border-radius: 50%;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            box-shadow: 0 2px 8px rgba(196, 167, 125, 0.2);
            line-height: 1;
        }

        .social-links a i {
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .social-links a:hover {
            background: #b89968;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(196, 167, 125, 0.3);
        }

        /* Footer */
        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 3rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-about h3 {
            color: #c4a77d;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-about p {
            line-height: 1.7;
            color: #94a3b8;
        }

        .footer-section h4 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.7rem;
        }

        .footer-section ul li a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: #c4a77d;
        }

        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 2rem;
            text-align: center;
            color: #64748b;
        }

        .social-footer {
            display: flex;
            gap: 1.2rem;
            justify-content: center;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .social-footer a {
            width: 45px;
            height: 45px;
            background: #1e293b;
            color: #94a3b8;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            border: 2px solid transparent;
            line-height: 1;
        }

        .social-footer a i {
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .social-footer a:hover {
            background: #c4a77d;
            color: #fff;
            border-color: #b89968;
            transform: scale(1.1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                right: -100%;
                top: 60px;
                flex-direction: column;
                background: #fff;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .hero-content,
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero {
                padding: 6rem 2rem 4rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            h2 {
                font-size: 1.7rem;
            }
        }

        /* Testimonials Section */
        .testimonials {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #faf8f5 0%, #fff 100%);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: #fff;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(196, 167, 125, 0.15);
        }

        .stars {
            color: #ffc107;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .testimonial-text {
            color: #5a6b7a;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .author-avatar {
            font-size: 2.5rem;
            color: #c4a77d;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 0.2rem;
            font-size: 0.95rem;
        }

        .author-event {
            color: #6b7280;
            font-size: 0.85rem;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25d366 0%, #1ba85c 100%);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            transition: all 0.3s ease;
            z-index: 999;
            animation: pulse 2s infinite;
        }

        .whatsapp-btn:hover {
            transform: scale(1.15);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
            animation: none;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
            }
            100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
        }

        @media (max-width: 768px) {
            .whatsapp-btn {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }
