 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #1d1d1f;
            overflow-x: hidden;
        }

        /* Navigation Mobile-First */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: #102F63;
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 0 16px;
            height: 80px;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 60px;
        }

        .logo {
            font-size: 20px;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }

        .btn-reserve {
            background: #ff8c00;
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .btn-reserve:hover {
            background: #e67c00;
        }

        /* Hero Section - Mobile Optimized */
        .hero {
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
            color: white;
            padding: 80px 16px 60px;
            text-align: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-container {
            max-width: 100%;
        }

        .hero h1 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 32px;
            opacity: 0.9;
            line-height: 1.5;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .btn-primary {
            background: #ff8c00;
            color: white;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            width: 100%;
            max-width: 280px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(255, 140, 0, 0.3);
        }

        .btn-primary:hover {
            background: #e67c00;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 16px 32px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            width: 100%;
            max-width: 280px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Container Mobile */
        .container {
            padding: 0 16px;
            max-width: 100%;
        }

        /* Services Section - Mobile */
        .services {
            padding: 60px 0;
            background: #f8fafc;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: #1d1d1f;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 16px;
            color: #6b7280;
            line-height: 1.5;
        }

        .services-grid {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .service-icon {
            font-size: 48px;
            margin-bottom: 16px;
            display: block;
        }

        .service-title {
            font-size: 22px;
            font-weight: 700;
            color: #1d1d1f;
            margin-bottom: 12px;
        }

        .service-description {
            font-size: 16px;
            color: #6b7280;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
            text-align: left;
        }

        .service-features li {
            padding: 6px 0;
            color: #374151;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }

        .service-features li::before {
            content: '✓';
            background: #10b981;
            color: white;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: bold;
            flex-shrink: 0;
        }

        /* Why Choose Us - Mobile */
        .why-choose {
            padding: 60px 0;
            background: white;
        }

        .features-grid {
            display: flex;
            flex-direction: column;
            gap: 32px;
            margin-top: 40px;
        }

        .feature {
            text-align: center;
            padding: 20px;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff8c00, #e67c00);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 24px;
            color: white;
            box-shadow: 0 4px 16px rgba(255, 140, 0, 0.3);
        }

        .feature h3 {
            font-size: 20px;
            font-weight: 700;
            color: #1d1d1f;
            margin-bottom: 12px;
        }

        .feature p {
            font-size: 15px;
            color: #6b7280;
            line-height: 1.5;
        }

        /* CTA Section - Mobile */
        .cta {
            padding: 60px 16px;
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
            color: white;
            text-align: center;
        }

        .cta h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .cta p {
            font-size: 16px;
            margin-bottom: 32px;
            opacity: 0.9;
            line-height: 1.5;
        }

        /* Footer - Mobile */
        .footer {
            background: #111827;
            color: white;
            padding: 40px 16px 20px;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-section h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #ff8c00;
        }

        .footer-section p,
        .footer-section a {
            color: #d1d5db;
            text-decoration: none;
            line-height: 1.6;
            font-size: 14px;
            display: block;
            margin-bottom: 8px;
        }

        .footer-section a:hover {
            color: #ff8c00;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 16px;
            text-align: center;
            color: #9ca3af;
            font-size: 12px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Tablet et Desktop */
        @media (min-width: 768px) {
            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 32px;
            }

            .nav-container {
                height: 70px;
                padding: 0 32px;
            }

            .logo {
                font-size: 24px;
            }

            .btn-reserve {
                padding: 12px 24px;
                font-size: 16px;
            }

            .hero {
                padding: 120px 32px 80px;
            }

            .hero h1 {
                font-size: 48px;
            }

            .hero p {
                font-size: 20px;
            }

            .hero-buttons {
                flex-direction: row;
                justify-content: center;
            }

            .section-title {
                font-size: 40px;
            }

            .section-subtitle {
                font-size: 18px;
            }

            .services-grid {
                flex-direction: row;
                gap: 32px;
            }

            .service-card {
                flex: 1;
                padding: 32px;
            }

            .features-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .cta h2 {
                font-size: 40px;
            }

            .cta p {
                font-size: 18px;
            }

            .footer-content {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 48px;
            }
        }

        @media (min-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .footer-content {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Touch-friendly */
        .btn-primary,
        .btn-secondary,
        .btn-reserve {
            min-height: 44px;
            touch-action: manipulation;
        }