        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f8f8;
            color: #333;
            line-height: 1.6;
        }
        
        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            position: relative;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
        }
        
        .logo span {
            font-size: 12px;
            color: #666;
            display: block;
            margin-left: 5px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #444;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #e67e22;
        }
        
        .phone-number {
            color: #e67e22;
            font-weight: bold;
            font-size: 16px;
        }
        
        /* Hero Section */
        .hero {
            background-image: url('');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 60px 0;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 36px;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        /* Search Box */
        .search-box {
            background: #fff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .search-tabs {
            display: flex;
            margin-bottom: 20px;
            border-bottom: 2px solid #f1f1f1;
        }
        
        .search-tab {
            padding: 10px 20px;
            cursor: pointer;
            position: relative;
            font-weight: 600;
            color: #777;
        }
        
        .search-tab.active {
            color: #e67e22;
        }
        
        .search-tab.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #e67e22;
        }
        
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .form-group {
            flex: 1 1 200px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
            color: #777;
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 15px;
        }
        
        .btn-search {
            background-color: #e67e22;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
            flex: 1;
            min-width: 120px;
        }
        
        .btn-search:hover {
            background-color: #d35400;
        }
        
        /* Features Section */
        .features {
            background-color: #6c5ce7;
            color: white;
            padding: 20px 0;
        }
        
        .features-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .feature {
            flex: 1 1 250px;
            display: flex;
            align-items: center;
            padding: 10px 15px;
        }
        
        .feature-icon {
            font-size: 24px;
            margin-right: 15px;
            color: #fff;
        }
        
        .feature-text h3 {
            font-size: 16px;
            margin-bottom: 2px;
        }
        
        .feature-text p {
            font-size: 14px;
            opacity: 0.9;
        }
        
        /* Main Content */
        .main-content {
            padding: 50px 0;
        }
        
        .content-section {
            margin-bottom: 40px;
        }
        
        .content-section h2 {
            text-align: center;
            color: #444;
            margin-bottom: 20px;
            font-size: 28px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .content-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #e67e22;
        }
        
        .content-section p {
            margin-bottom: 15px;
            text-align: justify;
        }
        
        /* Fare Types */
        .fare-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .fare-type {
            background-color: #fff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .fare-type h3 {
            color: #e67e22;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .fare-type p {
            margin-bottom: 15px;
            font-size: 15px;
        }
        
        /* Corporate Perks */
        .corporate-perks {
            background-color: #fff;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .perk-list {
            list-style: none;
            margin-top: 20px;
        }
        
        .perk-list li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }
        
        .perk-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #e67e22;
            font-weight: bold;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            padding: 15px;
            border-radius: 6px;
            font-size: 14px;
            color: #666;
            margin: 30px 0;
        }
        
        /* Footer */
        footer {
            background-color: #333;
            color: #fff;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: #e67e22;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #e67e22;
        }
        
        .footer-contact {
            margin-bottom: 15px;
        }
        
        .footer-contact p {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: #e67e22;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: #444;
            color: #fff;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .footer-social a:hover {
            background-color: #e67e22;
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 14px;
            color: #aaa;
        }
        
        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        .payment-methods img {
            height: 24px;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .features-container {
                flex-direction: column;
            }
            
            .feature {
                margin-bottom: 10px;
            }
            
            .search-form {
                flex-direction: column;
            }
            
            .form-group {
                margin-bottom: 10px;
            }
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #e67e22;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s;
            z-index: 999;
        }
        
        .back-to-top.visible {
            opacity: 1;
        }
        
        
        /* FAQ Section Styles */
.faq-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 32px;
  font-weight: 700;
}

.faq-header p {
  font-size: 14px;
  color: #666;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 14px 20px;
  margin-bottom: 14px;
  background: #fff;
  transition: all 0.3s ease;
}

.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-item summary::marker {
  display: none;
}

.faq-item[open] summary::after {
  content: "−";
  position: absolute;
  right: 0;
  font-size: 18px;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 18px;
}

.faq-item p {
  margin-top: 12px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

   