* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            background: #fff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .logo span {
            color: #666;
            font-weight: 400;
            font-size: 18px;
            -webkit-text-fill-color: #666;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }
        
        nav a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #667eea;
        }
        
        .mobile-menu {
            display: none;
            font-size: 28px;
            cursor: pointer;
        }
        
        /* Hero Section */
    .hero {
    background-image: url('/img/seychelles airport car rental.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}
        h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .hero-subtitle {
            font-size: 22px;
            margin-bottom: 30px;
            opacity: 0.95;
        }
        
        .features-list {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
        }
        
        .feature-item::before {
            content: '✓';
            font-size: 20px;
            font-weight: bold;
        }
        
        .cta-button {
            display: inline-block;
            background: #fff;
            color: #667eea;
            padding: 16px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 20px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Booking Widget Section - Right after Hero */
        .booking-widget-section {
            padding: 40px 0;
            background: #fff;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .booking-widget {
            min-height: 400px;
        }
        
        /* Quick Answers Section */
        .quick-answers {
            padding: 60px 0;
            background: white;
        }
        
        .answer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .answer-box {
            padding: 25px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #667eea;
        }
        
        .answer-box strong {
            display: block;
            font-size: 18px;
            color: #333;
            margin-bottom: 10px;
        }
        
        .answer-box p {
            color: #666;
            line-height: 1.6;
        }
        
        /* How It Works */
        .how-it-works {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .step {
            text-align: center;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        .step h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .step p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Price Table */
        .pricing {
            padding: 80px 0;
            background: white;
        }
        
        .section-title {
            font-size: 36px;
            text-align: center;
            margin-bottom: 20px;
            color: #333;
        }
        
        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 18px;
            margin-bottom: 50px;
        }
        
        .price-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        th {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            text-align: left;
            font-size: 18px;
        }
        
        td {
            padding: 20px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        tr:last-child td {
            border-bottom: none;
        }
        
        tr:hover {
            background: #f8f9fa;
        }
        
        .price-highlight {
            font-size: 24px;
            font-weight: bold;
            color: #667eea;
        }
        
        /* Info Cards */
        .info-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .info-card {
            padding: 30px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .info-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .info-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Car Types */
        .car-types {
            padding: 80px 0;
            background: white;
        }
        
        .cars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .car-card {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .car-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.12);
        }
        
        .car-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .car-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .car-card .price {
            font-size: 28px;
            color: #667eea;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .car-card ul {
            list-style: none;
            color: #666;
            text-align: left;
            margin-bottom: 20px;
        }
        
        .car-card ul li {
            padding: 5px 0;
        }
        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            margin-top: 50px;
        }
        
        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            padding: 25px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }
        
        .faq-question:hover {
            background: #f8f9fa;
        }
        
        .faq-question span {
            font-size: 24px;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question span {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            color: #666;
            line-height: 1.6;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 25px 25px;
            max-height: 300px;
        }
        
        /* Footer - Minimal Style */
        footer {
            background: #3a4f5f;
            color: #a8b2ba;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 20px;
            color: #fff;
            font-weight: 600;
        }
        
        .footer-section p {
            line-height: 1.8;
            color: #a8b2ba;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            padding: 5px 0;
        }
        
        .footer-section a {
            color: #a8b2ba;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #fff;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #8a9399;
        }
        
        .footer-bottom a {
            color: #a8b2ba;
            text-decoration: none;
            margin: 0 10px;
        }
        
        .footer-bottom a:hover {
            color: #fff;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            nav {
                display: none;
            }
            
            h1 {
                font-size: 32px;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .features-list {
                flex-direction: column;
                gap: 15px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            table {
                font-size: 14px;
            }
            
            th, td {
                padding: 15px 10px;
            }
        }