* {
            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/car-rental-praslin.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            padding: 80px 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;
        }
        
        .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);
        }
        
        /* Quick Answers Section for AI Overview */
        .quick-answers {
            padding: 60px 0;
            background: white;
            border-bottom: 2px solid #f8f9fa;
        }
        
        .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;
        }
        
        /* Booking Widget Section */
        .booking-section {
            padding: 40px 0;
            background: #f8f9fa;
        }
        
        .booking-widget {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            min-height: 400px;
        }
        
        /* How It Works */
        .how-it-works {
            padding: 80px 0;
            background: white;
        }
        
        h2 {
            font-size: 36px;
            text-align: center;
            margin-bottom: 50px;
            color: #333;
        }
        
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .step {
            text-align: center;
            padding: 20px;
        }
        
        .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: 700;
            margin: 0 auto 20px;
        }
        
        .step h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .step p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Pricing Section */
        .pricing-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .pricing-table {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .pricing-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .pricing-table th {
            background: #333;
            color: white;
            padding: 20px;
            text-align: left;
            font-weight: 600;
        }
        
        .pricing-table td {
            padding: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .pricing-table tr:nth-child(even) {
            background: #f8f9fa;
        }
        
        .price-highlight {
            font-size: 24px;
            font-weight: 700;
            color: #27ae60;
        }
        
        /* Comparison Table Section */
        .comparison-table {
            padding: 80px 0;
            background: white;
        }
        
        /* Benefits Section */
        .benefits {
            padding: 80px 0;
            background: white;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .benefit-card {
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.12);
        }
        
        .benefit-icon {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .benefit-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .benefit-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Driving Rules Section */
        .driving-rules {
            padding: 80px 0;
            background: white;
        }
        
        .rules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .rule-card {
            padding: 25px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #667eea;
        }
        
        .rule-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .rule-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Best Places Section */
        .best-places {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .places-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .place-card {
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        
        .place-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.12);
        }
        
        .place-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .place-card p {
            color: #666;
            line-height: 1.6;
        }
        
        .numbered-tips {
            max-width: 800px;
            margin: 50px auto 0;
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }
        
        .numbered-tips h3 {
            font-size: 24px;
            color: #333;
            margin-bottom: 20px;
        }
        
        .numbered-tips ol {
            list-style: none;
            counter-reset: tips-counter;
            padding: 0;
        }
        
        .numbered-tips ol li {
            counter-increment: tips-counter;
            margin-bottom: 20px;
            padding-left: 50px;
            position: relative;
            color: #666;
            line-height: 1.6;
        }
        
        .numbered-tips ol li::before {
            content: counter(tips-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
        }
        
        /* Useful Information Section */
        .useful-info {
            padding: 80px 0;
            background: white;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .info-card {
            padding: 30px;
            background: #f8f9fa;
            border-radius: 12px;
            text-align: center;
        }
        
        .info-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .info-card p {
            color: #666;
            line-height: 1.6;
            text-align: left;
        }
        
        /* Documents Section */
        .documents {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .doc-content {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .doc-content > p {
            font-size: 18px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .doc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .doc-card {
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }
        
        .doc-card h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #333;
        }
        
        .doc-card ul {
            list-style: none;
            padding: 0;
        }
        
        .doc-card ul li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #666;
            line-height: 1.6;
        }
        
        .doc-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #27ae60;
            font-weight: bold;
        }
        
        /* No Deposit Section */
        .no-deposit {
            padding: 80px 0;
            background: white;
        }
        
        .no-deposit-content {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .no-deposit-content > p {
            font-size: 18px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .deposit-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .deposit-card {
            padding: 30px;
            background: #f8f9fa;
            border-radius: 12px;
            border-top: 3px solid #667eea;
        }
        
        .deposit-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .deposit-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }
        
        .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-answer {
            padding: 0 25px 25px;
            color: #666;
            line-height: 1.8;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: white;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .testimonial-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 12px;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.5;
        }
        
        .testimonial-text {
            margin-bottom: 20px;
            color: #333;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: #333;
        }
        
        .testimonial-rating {
            color: #f39c12;
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            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 {
            font-size: 20px;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-section p,
        .footer-section ul {
            color: #95a5a6;
            line-height: 1.8;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: #95a5a6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 30px;
            text-align: center;
            color: #95a5a6;
        }
        
        .legal-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        
        .legal-links a {
            color: #95a5a6;
            text-decoration: none;
        }
        
        .legal-links a:hover {
            color: white;
        }
        
        
        /* Contact Links Styles */
.footer-section a[href^="tel:"],
.footer-section a[href^="mailto:"],
.footer-section a[href^="https://wa.me/"] {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a[href^="tel:"]:hover,
.footer-section a[href^="mailto:"]:hover,
.footer-section a[href^="https://wa.me/"]:hover {
    color: white;
    text-decoration: underline;
}
        
        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            h1 {
                font-size: 32px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .features-list {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .steps {
                grid-template-columns: 1fr;
            }
            
            .pricing-table {
                overflow-x: auto;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 28px;
            }
            
            h2 {
                font-size: 28px;
            }
            
            .cta-button {
                padding: 14px 30px;
                font-size: 18px;
            }
        }

* {
            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/car-hire-mahe.png');
            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: '';
            display: inline-block;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
        }
        
        .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 */
        .booking-widget-section {
            padding: 40px 0;
            background: #fff;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .booking-widget {
            min-height: 400px;
        }
        
        /* Quick Info Section */
        .quick-info {
            padding: 60px 0;
            background: white;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .info-box {
            padding: 25px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #667eea;
        }
        
        .info-box strong {
            display: block;
            font-size: 18px;
            color: #333;
            margin-bottom: 10px;
        }
        
        .info-box p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Car Types Section */
        .car-types {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .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;
        }
        
        .cars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .car-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }
        
        .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;
            color: #667eea;
        }
        
        .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;
            padding-left: 20px;
            position: relative;
        }
        
        .car-card ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background: #667eea;
            border-radius: 50%;
        }
        
        /* Locations Section */
        .locations {
            padding: 80px 0;
            background: white;
        }
        
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .location-card {
            padding: 30px;
            background: #f8f9fa;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        
        .location-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .location-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .location-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        
        /* Why Choose Section */
        .why-choose {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .benefit {
            text-align: center;
        }
        
        .benefit-icon {
            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;
            margin: 0 auto 20px;
        }
        
        .benefit h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .benefit p {
            color: #666;
            line-height: 1.6;
        }
        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background: white;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            margin-top: 50px;
        }
        
        .faq-item {
            background: #f8f9fa;
            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: #ffffff;
        }
        
        .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 */
        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;
            }
            
            nav.active {
                display: block;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                padding: 20px;
            }
            
            nav.active ul {
                flex-direction: column;
                gap: 15px;
            }
            
            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;
            }
            
            .cars-grid, .locations-grid, .benefits-grid {
                grid-template-columns: 1fr;
            }
        }

* {
            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;
            }
        }

* {
            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,
        nav a.active {
            color: #667eea;
        }
        
        .mobile-menu {
            display: none;
            font-size: 28px;
            cursor: pointer;
        }
        
        /* FAQ Hero Section */
        .faq-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .faq-hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .faq-hero p {
            font-size: 20px;
            opacity: 0.95;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* FAQ Search */
        .faq-search {
            padding: 40px 0;
            background: #f8f9fa;
        }
        
        .search-container {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 18px 50px 18px 20px;
            font-size: 16px;
            border: 2px solid #e1e4e8;
            border-radius: 50px;
            outline: none;
            transition: border-color 0.3s;
        }
        
        .search-input:focus {
            border-color: #667eea;
        }
        
        .search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #667eea;
            font-size: 20px;
        }
        
        .search-icon::after {
            content: "Search";
            font-size: 14px;
            font-weight: 600;
        }
        
        /* FAQ Categories */
        .faq-categories {
            padding: 40px 0 20px;
            background: white;
        }
        
        .categories-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .category-btn {
            padding: 10px 25px;
            background: white;
            border: 2px solid #e1e4e8;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 15px;
            font-weight: 500;
            color: #666;
        }
        
        .category-btn:hover {
            border-color: #667eea;
            color: #667eea;
        }
        
        .category-btn.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-color: transparent;
        }
        
        /* FAQ Content */
        .faq-content {
            padding: 40px 0 80px;
            background: white;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-section {
            margin-bottom: 50px;
        }
        
        .faq-section h2 {
            font-size: 28px;
            margin-bottom: 30px;
            color: #333;
            padding-bottom: 15px;
            border-bottom: 2px solid #667eea;
        }
        
        .faq-item {
            background: white;
            border: 1px solid #e1e4e8;
            border-radius: 12px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: box-shadow 0.3s;
        }
        
        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .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;
            background: #f8f9fa;
        }
        
        .faq-question:hover {
            background: #f0f2f5;
        }
        
        .faq-question.active {
            background: white;
            color: #667eea;
        }
        
        .faq-toggle {
            font-size: 24px;
            transition: transform 0.3s;
            color: #667eea;
        }
        
        .faq-question.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: #666;
            line-height: 1.8;
        }
        
        .faq-answer.active {
            padding: 20px 25px 25px;
            max-height: 500px;
        }
        
        .faq-answer p {
            margin-bottom: 15px;
        }
        
        .faq-answer ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .faq-answer li {
            margin-bottom: 8px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            text-align: center;
            color: white;
        }
        
        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.95;
        }
        
        .cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: white;
            color: #667eea;
            text-decoration: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        /* Contact Info */
        .contact-info {
            padding: 60px 0;
            background: #f8f9fa;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .contact-card {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 24px;
            font-weight: bold;
        }
        
        .contact-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .contact-card p {
            color: #666;
            line-height: 1.6;
        }
        
        .contact-card a {
            color: #667eea;
            text-decoration: none;
            font-weight: 500;
        }
        
        .contact-card a:hover {
            text-decoration: underline;
        }
        
        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            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 {
            font-size: 20px;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-section p,
        .footer-section ul {
            color: #95a5a6;
            line-height: 1.8;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: #95a5a6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 30px;
            text-align: center;
            color: #95a5a6;
        }
        
        .legal-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        
        .legal-links a {
            color: #95a5a6;
            text-decoration: none;
        }
        
        .legal-links a:hover {
            color: white;
        }
        
        /* Menu Icon Style */
        .menu-icon::after {
            content: "MENU";
            font-size: 12px;
            font-weight: bold;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .faq-hero h1 {
                font-size: 32px;
            }
            
            .faq-hero p {
                font-size: 18px;
            }
            
            .faq-question {
                font-size: 16px;
                padding: 20px;
            }
            
            .faq-answer {
                font-size: 15px;
            }
            
            .categories-container {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .faq-hero h1 {
                font-size: 28px;
            }
            
            .cta-section h2 {
                font-size: 28px;
            }
            
            .cta-button {
                padding: 14px 30px;
                font-size: 16px;
            }
        }

* {
            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 {
            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,
        nav a.active {
            color: #667eea;
        }
        
        .mobile-menu {
            display: none;
            font-size: 28px;
            cursor: pointer;
        }
        
        .page-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 42px;
            margin-bottom: 15px;
        }
        
        .page-header p {
            font-size: 20px;
            opacity: 0.9;
        }
        
        .reviews-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .reviews-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .reviews-header h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #333;
        }
        
        .rating-summary {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .overall-rating {
            text-align: center;
        }
        
        .rating-number {
            font-size: 48px;
            font-weight: bold;
            color: #333;
        }
        
        .rating-stars {
            color: #f39c12;
            font-size: 24px;
            margin: 10px 0;
        }
        
        .review-count {
            color: #666;
            font-size: 16px;
        }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            position: relative;
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .reviewer-info {
            flex: 1;
        }
        
        .reviewer-name {
            font-weight: 600;
            font-size: 18px;
            color: #333;
            margin-bottom: 5px;
        }
        
        .review-location {
            color: #666;
            font-size: 14px;
        }
        
        .review-date {
            color: #999;
            font-size: 14px;
        }
        
        .review-rating {
            color: #f39c12;
            font-size: 18px;
        }
        
        .review-text {
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .review-verified {
            display: inline-block;
            padding: 4px 10px;
            background: #e8f5e9;
            color: #27ae60;
            font-size: 12px;
            font-weight: 600;
            border-radius: 4px;
        }
        
        .review-form-section {
            background: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .review-form {
            max-width: 600px;
            margin: 0 auto;
            padding: 40px;
            background: #f8f9fa;
            border-radius: 12px;
        }
        
        .review-form h3 {
            font-size: 28px;
            margin-bottom: 30px;
            color: #333;
        }
        
        .form-group {
            margin-bottom: 25px;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            font-family: inherit;
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 28px;
        }
        
        .star {
            cursor: pointer;
            color: #ddd;
            transition: color 0.2s;
        }
        
        .star:hover,
        .star.active {
            color: #f39c12;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 6px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
        }
        
        .success-message {
            display: none;
            padding: 20px;
            background: #e8f5e9;
            color: #27ae60;
            border-radius: 6px;
            margin-top: 20px;
            font-weight: 600;
        }
        
        footer {
            background: #2c3e50;
            color: white;
            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 {
            font-size: 20px;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-section p,
        .footer-section ul {
            color: #95a5a6;
            line-height: 1.8;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: #95a5a6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 30px;
            text-align: center;
            color: #95a5a6;
        }
        
        .legal-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        
        .legal-links a {
            color: #95a5a6;
            text-decoration: none;
        }
        
        .legal-links a:hover {
            color: white;
        }
        
        .footer-section a[href^="tel:"],
        .footer-section a[href^="mailto:"],
        .footer-section a[href^="https://wa.me/"] {
            color: #95a5a6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a[href^="tel:"]:hover,
        .footer-section a[href^="mailto:"]:hover,
        .footer-section a[href^="https://wa.me/"]:hover {
            color: white;
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .page-header h1 {
                font-size: 32px;
            }
            
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            
            .rating-summary {
                flex-direction: column;
                gap: 20px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 28px;
            }
            
            .reviews-header h2 {
                font-size: 28px;
            }
        }

* {
            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 - Same as main page */
        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;
        }
        
        .mobile-menu::after {
            content: "MENU";
            font-size: 14px;
            font-weight: bold;
        }
        
        /* About Hero Section */
        .about-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        h1 {
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 20px;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* About Content Section */
        .about-content {
            padding: 80px 0;
            background: white;
        }
        
        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }
        
        h2 {
            font-size: 36px;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .intro-text {
            font-size: 18px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 40px;
            text-align: center;
        }
        
        /* Mission Values Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }
        
        .value-card {
            padding: 30px;
            background: #f8f9fa;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        }
        
        .value-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
        }
        
        .value-card h3 {
            font-size: 24px;
            color: #333;
            margin-bottom: 15px;
        }
        
        .value-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Team Section */
        .team-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .team-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            color: #666;
            font-size: 18px;
            line-height: 1.8;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .team-member {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }
        
        .member-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            font-weight: 700;
        }
        
        .team-member h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 5px;
        }
        
        .member-role {
            color: #667eea;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .member-bio {
            color: #666;
            line-height: 1.6;
            font-size: 14px;
        }
        
        /* Experience Section */
        .experience-section {
            padding: 80px 0;
            background: white;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 800px;
            margin: 50px auto;
        }
        
        .stat-card {
            text-align: center;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 18px;
            color: #666;
        }
        
        /* Why Choose Us Section */
        .why-us-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .reason-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }
        
        .reason-card h3 {
            font-size: 22px;
            color: #333;
            margin-bottom: 15px;
        }
        
        .reason-card ul {
            list-style: none;
            padding: 0;
        }
        
        .reason-card li {
            padding: 8px 0;
            color: #666;
            position: relative;
            padding-left: 25px;
        }
        
        .reason-card li::before {
            content: 'OK';
            position: absolute;
            left: 0;
            color: #27ae60;
            font-weight: bold;
            font-size: 12px;
        }
        
        /* Partners Section */
        .partners-section {
            padding: 80px 0;
            background: white;
        }
        
        .partners-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .partners-text {
            font-size: 18px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 40px;
        }
        
        .partners-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .partner-item {
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
            font-weight: 600;
            color: #666;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            text-align: center;
            color: white;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 20px;
        }
        
        .cta-text {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.95;
        }
        
        .cta-button {
            display: inline-block;
            padding: 16px 40px;
            background: white;
            color: #667eea;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        /* Footer - Same as main page */
        footer {
            background: #2c3e50;
            color: white;
            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 {
            font-size: 20px;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-section p,
        .footer-section ul {
            color: #95a5a6;
            line-height: 1.8;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: #95a5a6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 30px;
            text-align: center;
            color: #95a5a6;
        }
        
        .legal-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        
        .legal-links a {
            color: #95a5a6;
            text-decoration: none;
        }
        
        .legal-links a:hover {
            color: white;
        }
        
        /* Contact Links Styles */
        .footer-section a[href^="tel:"],
        .footer-section a[href^="mailto:"],
        .footer-section a[href^="https://wa.me/"] {
            color: #95a5a6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a[href^="tel:"]:hover,
        .footer-section a[href^="mailto:"]:hover,
        .footer-section a[href^="https://wa.me/"]:hover {
            color: white;
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            h1 {
                font-size: 32px;
            }
            
            h2 {
                font-size: 28px;
            }
            
            .values-grid,
            .team-grid,
            .reasons-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        nav {
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }
        
        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;
        }
        
        /* Contact Hero Section */
        .contact-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 100px 0 60px;
            color: white;
        }
        
        .contact-hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .contact-hero p {
            font-size: 18px;
            text-align: center;
            opacity: 0.9;
        }
        
        /* Contact Content Section */
        .contact-content {
            padding: 80px 0;
            background: white;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Contact Information */
        .contact-info {
            padding-right: 40px;
        }
        
        .contact-info h2 {
            font-size: 32px;
            margin-bottom: 30px;
            color: #333;
        }
        
        .info-block {
            margin-bottom: 40px;
        }
        
        .info-block h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #333;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .info-block .icon {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            font-weight: bold;
        }
        
        .info-block p,
        .info-block a {
            color: #666;
            line-height: 1.8;
            margin-bottom: 8px;
            padding-left: 40px;
        }
        
        .info-block a {
            color: #667eea;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .info-block a:hover {
            color: #764ba2;
            text-decoration: underline;
        }
        
        .availability-banner {
            background: #f8f9fa;
            border-left: 4px solid #27ae60;
            padding: 20px;
            margin: 30px 0;
            border-radius: 4px;
        }
        
        .availability-banner h4 {
            color: #27ae60;
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        .availability-banner p {
            color: #666;
            margin: 0;
            margin-bottom: 5px;
        }
        
        /* Contact Form */
        .contact-form-section {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .contact-form-section h2 {
            font-size: 28px;
            margin-bottom: 30px;
            color: #333;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 14px 40px;
            border: none;
            border-radius: 6px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
        }
        
        /* Map Section */
        .map-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .map-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .map-container h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #333;
        }
        
        .map-container p {
            color: #666;
            margin-bottom: 40px;
            font-size: 18px;
        }
        
        .office-locations {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .location-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        
        .location-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.12);
        }
        
        .location-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .location-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            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 {
            font-size: 20px;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-section p,
        .footer-section ul {
            color: #95a5a6;
            line-height: 1.8;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: #95a5a6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 30px;
            text-align: center;
            color: #95a5a6;
        }
        
        .legal-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        
        .legal-links a {
            color: #95a5a6;
            text-decoration: none;
        }
        
        .legal-links a:hover {
            color: white;
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .contact-info {
                padding-right: 0;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .contact-hero h1 {
                font-size: 32px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }