		:root {
            --black: #000000;
            --dark-gray: #292929;
            --dark-teal: #02353C;
            --white-gray: #F5F5F5;
            --white: #FFFFFF;
            --green-dark: #2EAF7D;
            --green-bright: #2BC444;
            --green-light: #4AE3A8;
            --green-pale: #E4F5E8;
            --primary-color-orig: #3563E9;
            --secondary-color-orig: #FF6B35;
            --dark-color-orig: #222831;
            --light-color-orig: #F8F9FA;
            --accent-color-orig: #54B192;
        }
        
        body {
            font-family: 'Hind Madurai', sans-serif; /* Font from route-roule */
            background-color: var(--white); /* Background from route-roule */
            color: var(--dark-gray); /* Text color from route-roule */
            line-height: 1.7;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Hind Madurai', sans-serif; /* Font from route-roule */
            font-weight: 700; /* Weight from route-roule */
        }

        .subtitle { /* From route-roule */
            font-family: 'Hind Madurai', sans-serif;
            font-weight: 600;
        }

        /* Header from route-roule */
        .navbar {
            background-color: var(--white);
            border-bottom: 1px solid var(--white-gray);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Retained shadow from enhanced for depth */
        }

        .nav-link {
            color: var(--dark-gray); /* Link color from route-roule */
            font-weight: 600; /* Weight from route-roule */
            margin: 0 10px;
            position: relative;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--green-dark); /* Applied green from route-roule */
        }
        
        .nav-link:hover {
            color: var(--green-bright); /* Hover from route-roule */
        }
        
        .nav-link::after { /* Retained underline effect from enhanced */
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--green-bright); /* Applied green from route-roule */
            transition: width 0.3s;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }

        /* Buttons from route-roule */
        .btn {
            border-radius: 8px; /* Rounded corners from route-roule */
            padding: 10px 25px; /* Padding from enhanced, can be adjusted */
            font-weight: 600; /* Weight from route-roule */
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: var(--green-bright);
            border-color: var(--green-bright);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--green-dark);
            border-color: var(--green-dark);
            transform: translateY(-3px); /* Retained hover effect from enhanced */
            box-shadow: 0 10px 20px rgba(43, 196, 68, 0.2); /* Adjusted shadow color */
        }

        .btn-outline-primary {
            border-color: var(--green-bright);
            color: var(--green-bright);
        }

        .btn-outline-primary:hover {
            background-color: var(--green-bright);
            color: white;
        }
        
        .btn-secondary { /* Example: Adapting secondary button */
            background-color: var(--dark-teal);
            border-color: var(--dark-teal);
            color: white;
        }
        
        .btn-secondary:hover {
            background-color: #012A30; /* Darker teal */
            border-color: #012A30;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(2, 53, 60, 0.2);
        }

        .btn-success { /* From enhanced, styled with route-roule green */
            background-color: var(--green-bright);
            border-color: var(--green-bright);
        }
        
        .btn-success:hover {
            background-color: var(--green-dark);
            border-color: var(--green-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(84, 177, 146, 0.2); /* Kept original shadow, can be adjusted */
        }
        
        .btn-light {
            color: var(--green-dark);
            background-color: var(--white-gray);
            border-color: var(--white-gray);
            font-weight: 600;
        }
        
        .btn-light:hover {
            background-color: var(--white);
            color: var(--green-bright);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(220, 220, 220, 0.2);
        }

        /* Hero section from route-roule */
        .hero {
            background-color: var(--green-pale); /* Pale green background */
            padding: 80px 0; /* Padding from route-roule */
            color: var(--dark-gray); /* Text color for hero */
            text-align: center; /* Default alignment, can be adjusted */
            position: relative;
            overflow: hidden;
        }
        
        .hero h1 {
            font-size: 2.5rem; /* Size from route-roule */
            margin-bottom: 20px;
            text-shadow: none; /* Removed text shadow for route-roule style */
        }
        
        .hero p {
            font-size: 1.2rem; /* Adjusted size */
            margin-bottom: 2rem;
            text-shadow: none; /* Removed text shadow */
        }
        
        .hero-image { /* From route-roule */
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .check-item { /* From route-roule */
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .check-item i { /* From route-roule */
            color: var(--green-bright);
            margin-right: 10px;
        }

        /* Search section styling (if applicable, or adapt existing sections) */
        .search-section { /* From route-roule */
            padding: 60px 0;
        }

        /* Map Section - Adapt with route-roule styles */
        #exam-center-selection {
            padding: 60px 0; /* Consistent padding */
            background-color: var(--white);
        }
        
        #map {
            width: 100%;
            height: 450px;
            background: var(--white-gray); /* Lighter background */
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px; /* Rounded corners */
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Softer shadow */
            transition: all 0.3s ease;
        }
        
        #map:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* Enhanced hover shadow */
            transform: translateY(-5px);
        }
        
        .form-select { /* Style select dropdowns */
            padding: 12px 20px;
            border-radius: 8px; /* route-roule border radius */
            border: 1px solid var(--white-gray);
            background-color: white;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .form-select:focus {
            border-color: var(--green-bright); /* Focus color */
            box-shadow: 0 5px 15px rgba(43, 196, 68, 0.15); /* Adjusted shadow */
        }
        
        #info-box { /* Style info box */
            padding: 20px;
            background-color: var(--green-pale); /* Pale green background */
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            color: var(--dark-gray);
        }
        
        #info-box:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        /* Track Preview Section - Adapt with route-roule styles */
        #track-preview {
            background-color: var(--white-gray); /* Light gray background */
            padding: 60px 0;
            position: relative;
        }
                
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            background-color: var(--white);
            margin-bottom: 30px; /* From route-roule benefit-card */
            height: 100%;
        }
        
        .card:hover {
            transform: translateY(-5px); /* Consistent hover effect */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        
        .card-body {
            padding: 25px;
        }
        
        .card-title {
            font-weight: 700; /* route-roule heading weight */
            margin-bottom: 15px;
            font-size: 1.25rem; /* Adjusted size */
        }

        .city-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 200px; /* Or auto */
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .city-card:hover {
            transform: translateY(-5px);
        }

        .city-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .city-card .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            padding: 20px;
            color: white;
        }

        .city-card .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 2rem;
            opacity: 0.8;
        }


        /* Testimonials Section */
        #testimonials {
            padding: 60px 0; /* Consistent padding */
            background-color: var(--white);
        }
        
        .testimonial-card {
            background-color: var(--white-gray); /* Light gray background for cards */
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            margin: 20px 10px;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            object-fit: cover;
            border: 5px solid var(--white); /* White border */
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            color: var(--dark-gray);
        }
        
        .testimonial-text::before,
        .testimonial-text::after { /* Retain quotes */
            content: '"';
            font-size: 50px;
            color: #cccccc; /* Lighter quote color */
            position: absolute;
        }
        
        .testimonial-text::before {
            top: -20px;
            left: -15px;
        }
        
        .testimonial-text::after {
            bottom: -40px;
            right: -15px;
        }
        
        .testimonial-name {
            font-weight: 600;
            color: var(--dark-gray);
        }
        
        .testimonial-rating {
            color: var(--green-bright); /* Green for rating */
            margin-top: 5px;
        }
        
        .benefits-section { /* From route-roule, if replacing timeline */
            padding: 60px 0;
            background-color: var(--white);
        }

        .benefit-card { /* From route-roule */
            text-align: center;
            margin-bottom: 30px;
            background-color: var(--white);
            padding: 20px;
            border-radius:12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .benefit-card img {
            width: 100%; /* Or a fixed size e.g. 80px */
            border-radius: 12px; /* Or 50% for circle */
            margin-bottom: 15px;
        }

        .benefit-card .number {
            display: inline-block;
            width: 30px;
            height: 30px;
            line-height: 30px;
            background-color: var(--green-bright);
            color: white;
            border-radius: 50%;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        /* Pricing section */
        .pricing-section {
            padding: 60px 0;
            background-color: var(--white-gray);
        }

        .pricing-card {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            max-width: 500px; /* From enhanced */
            margin: 0 auto 30px auto; /* Centering for single card display */
        }

        .pricing-card h3 {
            font-size: 1.5rem; /* route-roule */
            margin-bottom: 15px;
        }

        .pricing-card .price { /* route-roule */
            font-size: 2rem;
            font-weight: bold;
            color: white;
            margin-bottom: 20px;
        }
        
        .pricing-header {
            background-color: var(--green-bright); /* Dark green header */
            color: white;
            padding: 30px;
            text-align: center;
            border-radius: 12px 12px 0 0; /* Rounded top corners */
        }
        
        .pricing-features {
            padding: 30px;
            text-align: left;
        }
        
        .pricing-features ul {
            list-style-type: none;
            padding: 0;
        }
        
        .pricing-features ul li {
            padding: 10px 0;
            border-bottom: 1px solid var(--white-gray); /* Lighter border */
        }
        
        .pricing-features ul li i {
            color: var(--green-bright); /* Green checkmark */
            margin-right: 10px;
        }
        
        .pricing-footer {
            padding: 30px;
            text-align: center;
        }
        
        /* FAQ Section */
        #faq {
            padding: 60px 0;
            background-color: var(--white);
        }
        
        .accordion-item {
            border: 1px solid var(--white-gray); /* Light border */
            margin-bottom: 15px;
            border-radius: 8px; /* route-roule radius */
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03); /* Softer shadow */
        }
        
        .accordion-button {
            padding: 20px 25px;
            font-weight: 600;
            color: var(--dark-gray);
            background-color: var(--white);
        }
        
        .accordion-button:not(.collapsed) {
            color: var(--green-dark); /* Dark green for active */
            background-color: var(--green-pale); /* Pale green for active */
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--white-gray);
        }
        
        .accordion-body {
            padding: 20px 25px;
            background-color: var(--white);
        }
        
        /* Closing CTA Section */
        #closing-cta {
            background: var(--green-dark); /* Dark green background */
            padding: 60px 0; /* Consistent padding */
            position: relative;
            overflow: hidden;
            color: var(--white);
        }
        
        #closing-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../img/banner.jpg') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }
        
        #closing-cta .container {
            position: relative;
            z-index: 1;
        }
        
        #closing-cta h2 {
            font-size: 2.2rem; /* Adjusted size */
            margin-bottom: 30px;
        }

        /* Footer from route-roule */
        footer {
            background-color: var(--white-gray);
            padding: 30px 0;
            margin-top: 60px;
            color: var(--dark-gray); /* Text color for footer */
        }
        
        /* Retaining some specific footer styles from enhanced if they are preferred */
        .footer-brand { /* If using a brand text in footer */
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--green-dark);
        }
        
        .footer-links h5 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: var(--dark-gray);
        }
        
        .footer-links h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--green-bright);
        }
        
        .footer-links ul {
            list-style-type: none;
            padding: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: var(--dark-gray); /* Adjusted link color */
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--green-bright); /* Hover color */
            padding-left: 5px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--green-bright); /* Pale green background */
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
			text-decoration-line: blink;
        }
        
        .social-links a:hover {
            background-color: var(--green-dark); /* Bright green hover */
            color: white;
            transform: translateY(-3px);
        }
        
        .newsletter-form { /* Style for newsletter */
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid var(--white-gray);
            border-radius: 8px 0 0 8px; /* route-roule radius */
            outline: none;
        }
        
        .newsletter-form button {
            padding: 0 25px;
            border: none;
            background-color: var(--green-bright);
            color: white;
            border-radius: 0 8px 8px 0; /* route-roule radius */
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: var(--green-dark);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #ddd; /* Lighter border */
            font-size: 14px;
            color: var(--dark-gray);
        }

        /* Preview Modal - Adapt with route-roule styles */
        .modal-content {
            border: none;
            border-radius: 12px; /* route-roule radius */
            overflow: hidden;
            background-color: var(--white);
        }
        
        .modal-header {
            padding: 15px 25px;
            border: none;
        }
        
        .modal-title {
            font-weight: 600;
        }
        
        .modal-body {
            padding: 25px;
            color: var(--dark-gray);
        }
        
        .modal-footer {
            border: none;
            padding: 15px 25px;
            background-color: var(--white-gray); /* Light gray footer */
        }
        
        /* Responsive adjustments from route-roule */
        @media (max-width: 768px) {
            .hero {
                padding: 40px 0;
            }
            .hero-image { /* If using hero-image class */
                margin-top: 30px;
            }
            /* Add other responsive styles from route-roule as needed */

            /* Responsive adjustments from enhanced */
            #map {
                display: none;
            }
            #mobile-dropdown {
                display: block;
            }
            .timeline { /* If using timeline */
                flex-direction: column;
            }
            .timeline::before {
                top: 0;
                left: 50px; /* Adjust based on icon size */
                width: 2px;
                height: 100%;
            }
            .timeline .step {
                margin-bottom: 30px; /* Spacing for stacked items */
            }
        }
        
        @media (min-width: 769px) {
            #mobile-dropdown {
                display: block;
            }
			#map {
                display: none;
            }
        }
		
		.center-info p {
            margin: 5px 0;
        }
		
		li > p {
			margin-bottom: 0px;
		}