

    /* -------- SECTION WRAPPER -------- */
    .airport-taxi-section {
        background-color: #ffffff;
        padding: 60px 20px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .airport-taxi-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
    }

    /* -------- IMAGE COLUMN -------- */
    .airport-taxi-image {
        flex: 1 1 45%;
        min-width: 280px;
    }

    .airport-taxi-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
        transition: transform 0.3s ease;
    }

    .airport-taxi-image img:hover {
        transform: scale(1.01);
    }

    /* -------- CONTENT COLUMN -------- */
    .airport-taxi-content {
        flex: 1 1 50%;
        min-width: 280px;
    }

    .airport-taxi-content h1 {
        font-size: 2.2rem;
        font-weight: 700;
        color: #1a2a3a;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }

    .airport-taxi-content h1 span {
        color: #c0392b;
        /* accent red-orange */;
    }

    .airport-taxi-content p {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #2c3e50;
        text-align: justify;
        margin-bottom: 18px;
    }

    .airport-taxi-content p:last-of-type {
        margin-bottom: 0;
    }

    /* -------- RESPONSIVE TWEAKS -------- */
    @media screen and (max-width: 768px) {
        .airport-taxi-section {
            padding: 40px 16px;
        }

        .airport-taxi-container {
            flex-direction: column;
            gap: 28px;
        }

        .airport-taxi-image {
            flex: 1 1 100%;
            min-width: 0;
        }

        .airport-taxi-content {
            flex: 1 1 100%;
            min-width: 0;
        }

        .airport-taxi-content h1 {
            font-size: 1.8rem;
        }

        .airport-taxi-content p {
            font-size: 1rem;
            line-height: 1.6;
        }
    }

    @media screen and (max-width: 480px) {
        .airport-taxi-section {
            padding: 30px 12px;
        }

        .airport-taxi-content h1 {
            font-size: 1.5rem;
        }

        .airport-taxi-content p {
            font-size: 0.95rem;
        }
    }

    /* -------- SECTION WRAPPER -------- */
    .airport-service-section {
        background-color: #032D45;
        padding: 70px 20px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .airport-service-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    /* -------- HEADING -------- */
    .airport-service-section h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 28px 0;
        letter-spacing: -0.5px;
        line-height: 1.2;
        border-left: 6px solid #f39c12;
        /* warm accent */
        padding-left: 20px;
    }

    /* -------- PARAGRAPHS (all justified) -------- */
    .airport-service-section p {
        font-size: 1.08rem;
        line-height: 1.8;
        color: #f0f6fa;
        text-align: justify;
        margin-bottom: 20px;
    }

    /* -------- LIST -------- */
    .service-list {
        margin: 28px 0 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 30px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 12px;
        padding: 22px 28px;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .service-list li {
        font-size: 1.02rem;
        line-height: 1.6;
        color: #e8f0f5;
        text-align: justify;
        padding: 6px 0 6px 28px;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .service-list li:last-child {
        border-bottom: none;
    }

    /* custom bullet – warm accent */
    .service-list li::before {
        content: "▹";
        position: absolute;
        left: 2px;
        top: 6px;
        color: #f39c12;
        font-size: 1.2rem;
    }

    /* -------- RESPONSIVE TWEAKS -------- */
    @media screen and (max-width: 768px) {
        .airport-service-section {
            padding: 50px 16px;
        }

        .airport-service-section h2 {
            font-size: 1.9rem;
            padding-left: 16px;
            border-left-width: 5px;
            margin-bottom: 22px;
        }

        .airport-service-section p {
            font-size: 1rem;
            line-height: 1.7;
        }

        .service-list {
            grid-template-columns: 1fr;
            gap: 4px;
            padding: 18px 20px;
        }

        .service-list li {
            font-size: 0.98rem;
            padding: 5px 0 5px 26px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .service-list li::before {
            top: 5px;
            font-size: 1.1rem;
        }
    }

    @media screen and (max-width: 480px) {
        .airport-service-section {
            padding: 36px 12px;
        }

        .airport-service-section h2 {
            font-size: 1.6rem;
            padding-left: 14px;
        }

        .airport-service-section p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .service-list {
            padding: 14px 16px;
        }

        .service-list li {
            font-size: 0.92rem;
            padding: 4px 0 4px 24px;
        }

        .service-list li::before {
            top: 4px;
            font-size: 1rem;
        }
    }

    /* -------- SECTION WRAPPER -------- */
    .how-it-works-section {
        background-color: #ffffff;
        padding: 70px 20px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .how-it-works-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    /* -------- H2 HEADING -------- */
    .how-it-works-section h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #1a2a3a;
        margin: 0 0 20px 0;
        letter-spacing: -0.5px;
        line-height: 1.2;
        text-align: left;
        border-bottom: 4px solid #032D45;
        padding-bottom: 14px;
        display: inline-block;
    }

    /* -------- INTRO PARAGRAPH (below H2) -------- */
    .how-it-works-section .intro-text {
        font-size: 1.08rem;
        line-height: 1.8;
        color: #2c3e50;
        text-align: justify;
        margin: 0 0 36px 0;
    }

    /* -------- STEP CARD -------- */
    .step-item {
        display: flex;
        gap: 20px;
        margin-bottom: 32px;
        align-items: flex-start;
    }

    .step-item:last-of-type {
        margin-bottom: 28px;
    }

    /* -------- STEP NUMBER (visual badge) -------- */
    .step-number {
        flex: 0 0 44px;
        height: 44px;
        background-color: #032D45;
        color: #ffffff;
        font-size: 1.3rem;
        font-weight: 700;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2px;
        box-shadow: 0 4px 10px rgba(3, 45, 69, 0.15);
    }

    /* -------- STEP CONTENT -------- */
    .step-content {
        flex: 1;
    }

    /* -------- H3 HEADINGS (step titles) -------- */
    .step-content h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #032D45;
        margin: 0 0 6px 0;
        line-height: 1.3;
    }

    /* -------- PARAGRAPHS inside steps (all justified) -------- */
    .step-content p {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #2c3e50;
        text-align: justify;
        margin: 0;
    }

    /* -------- CLOSING PARAGRAPH (below steps) -------- */
    .how-it-works-section .closing-text {
        font-size: 1.08rem;
        line-height: 1.8;
        color: #2c3e50;
        text-align: justify;
        margin: 8px 0 0 0;
        padding-top: 12px;
        border-top: 2px solid #e9edf2;
    }

    /* -------- RESPONSIVE TWEAKS -------- */
    @media screen and (max-width: 768px) {
        .how-it-works-section {
            padding: 50px 16px;
        }

        .how-it-works-section h2 {
            font-size: 1.9rem;
            padding-bottom: 10px;
            border-bottom-width: 3px;
        }

        .how-it-works-section .intro-text {
            font-size: 1.0rem;
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .step-item {
            gap: 16px;
            margin-bottom: 26px;
        }

        .step-number {
            flex: 0 0 38px;
            height: 38px;
            font-size: 1.1rem;
        }

        .step-content h3 {
            font-size: 1.15rem;
        }

        .step-content p {
            font-size: 0.98rem;
            line-height: 1.6;
        }

        .how-it-works-section .closing-text {
            font-size: 1.0rem;
            line-height: 1.7;
            padding-top: 10px;
        }
    }

    @media screen and (max-width: 480px) {
        .how-it-works-section {
            padding: 36px 12px;
        }

        .how-it-works-section h2 {
            font-size: 1.6rem;
            padding-bottom: 8px;
            border-bottom-width: 3px;
        }

        .how-it-works-section .intro-text {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 22px;
        }

        .step-item {
            gap: 12px;
            margin-bottom: 22px;
        }

        .step-number {
            flex: 0 0 32px;
            height: 32px;
            font-size: 0.95rem;
        }

        .step-content h3 {
            font-size: 1.05rem;
        }

        .step-content p {
            font-size: 0.92rem;
            line-height: 1.6;
        }

        .how-it-works-section .closing-text {
            font-size: 0.95rem;
            line-height: 1.6;
            padding-top: 8px;
        }
    }



    /* -------- SECTION WRAPPER -------- */
    .fare-section {
        background-color: #032D45;
        padding: 70px 20px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .fare-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 48px;
    }

    /* -------- IMAGE COLUMN -------- */
    .fare-image {
        flex: 1 1 42%;
        min-width: 260px;
    }

    .fare-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 14px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
        transition: transform 0.3s ease;
    }

    .fare-image img:hover {
        transform: scale(1.01);
    }

    /* -------- CONTENT COLUMN -------- */
    .fare-content {
        flex: 1 1 52%;
        min-width: 280px;
        color: #f0f6fa;
    }

    /* -------- H2 HEADING -------- */
    .fare-content h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 18px 0;
        letter-spacing: -0.5px;
        line-height: 1.2;
        border-left: 6px solid #f39c12;
        padding-left: 20px;
    }

    /* -------- PARAGRAPHS (all justified) -------- */
    .fare-content p {
        font-size: 1.08rem;
        line-height: 1.8;
        color: #f0f6fa;
        text-align: justify;
        margin-bottom: 18px;
    }

    /* -------- H3 HEADINGS -------- */
    .fare-content h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #ffffff;
        margin: 26px 0 10px 0;
        line-height: 1.3;
        border-bottom: 2px solid rgba(243, 156, 18, 0.3);
        padding-bottom: 6px;
    }

    /* -------- LISTS -------- */
    .fare-list {
        margin: 10px 0 18px 0;
        padding: 0;
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px 28px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 12px;
        padding: 18px 24px;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .fare-list li {
        font-size: 1.02rem;
        line-height: 1.6;
        color: #e8f0f5;
        text-align: justify;
        padding: 5px 0 5px 28px;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .fare-list li:last-child {
        border-bottom: none;
    }

    /* custom bullet – warm accent */
    .fare-list li::before {
        content: "▹";
        position: absolute;
        left: 2px;
        top: 5px;
        color: #f39c12;
        font-size: 1.2rem;
    }

    /* -------- SPECIAL LIST FOR "For a more accurate quote" -------- */
    .fare-list-accent {
        border-left: 4px solid #f39c12;
        background: rgba(243, 156, 18, 0.06);
    }

    /* -------- RESPONSIVE TWEAKS -------- */
    @media screen and (max-width: 900px) {
        .fare-container {
            flex-direction: column;
            gap: 32px;
        }

        .fare-image {
            flex: 1 1 100%;
            min-width: 0;
            width: 100%;
        }

        .fare-content {
            flex: 1 1 100%;
            min-width: 0;
        }

        .fare-content h2 {
            font-size: 2.0rem;
            padding-left: 16px;
            border-left-width: 5px;
        }

        .fare-content p {
            font-size: 1.02rem;
            line-height: 1.7;
        }

        .fare-list {
            grid-template-columns: 1fr;
            gap: 4px;
            padding: 16px 18px;
        }

        .fare-list li {
            font-size: 0.98rem;
            padding: 5px 0 5px 26px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .fare-list li::before {
            top: 5px;
            font-size: 1.1rem;
        }

        .fare-content h3 {
            font-size: 1.2rem;
        }
    }

    @media screen and (max-width: 480px) {
        .fare-section {
            padding: 40px 12px;
        }

        .fare-content h2 {
            font-size: 1.6rem;
            padding-left: 14px;
            border-left-width: 4px;
        }

        .fare-content p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .fare-list {
            padding: 12px 14px;
        }

        .fare-list li {
            font-size: 0.92rem;
            padding: 4px 0 4px 24px;
        }

        .fare-list li::before {
            top: 4px;
            font-size: 1rem;
        }

        .fare-content h3 {
            font-size: 1.05rem;
        }
    }



    .railway-taxi-section {
        background-color: #ffffff;
        padding: 70px 20px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .railway-taxi-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    /* H2 */
    .railway-taxi-container h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #1a2a3a;
        margin: 0 0 20px 0;
        letter-spacing: -0.5px;
        line-height: 1.2;
        border-bottom: 4px solid #032D45;
        padding-bottom: 14px;
        display: inline-block;
    }

    /* Paragraphs – all justified */
    .railway-taxi-container p {
        font-size: 1.08rem;
        line-height: 1.8;
        color: #2c3e50;
        text-align: justify;
        margin-bottom: 20px;
    }

    /* H3 headings */
    .railway-taxi-container h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #032D45;
        margin: 30px 0 12px 0;
        line-height: 1.3;
        border-left: 5px solid #f39c12;
        padding-left: 16px;
    }

    /* Bullet list */
    .railway-taxi-list {
        margin: 10px 0 20px 0;
        padding: 0;
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px 30px;
        background: #f8fafc;
        border-radius: 12px;
        padding: 20px 28px;
        border: 1px solid #e9edf2;
    }

    .railway-taxi-list li {
        font-size: 1.02rem;
        line-height: 1.6;
        color: #2c3e50;
        text-align: justify;
        padding: 5px 0 5px 28px;
        position: relative;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .railway-taxi-list li:last-child {
        border-bottom: none;
    }

    /* custom bullet – gold accent */
    .railway-taxi-list li::before {
        content: "▹";
        position: absolute;
        left: 2px;
        top: 5px;
        color: #f39c12;
        font-size: 1.2rem;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
        .railway-taxi-section {
            padding: 50px 16px;
        }

        .railway-taxi-container h2 {
            font-size: 1.9rem;
            padding-bottom: 10px;
            border-bottom-width: 3px;
        }

        .railway-taxi-container p {
            font-size: 1.0rem;
            line-height: 1.7;
        }

        .railway-taxi-container h3 {
            font-size: 1.15rem;
            padding-left: 14px;
            border-left-width: 4px;
        }

        .railway-taxi-list {
            grid-template-columns: 1fr;
            gap: 4px;
            padding: 16px 20px;
        }

        .railway-taxi-list li {
            font-size: 0.98rem;
            padding: 5px 0 5px 26px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }

        .railway-taxi-list li::before {
            top: 5px;
            font-size: 1.1rem;
        }
    }

    @media screen and (max-width: 480px) {
        .railway-taxi-section {
            padding: 36px 12px;
        }

        .railway-taxi-container h2 {
            font-size: 1.6rem;
            padding-bottom: 8px;
            border-bottom-width: 3px;
        }

        .railway-taxi-container p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .railway-taxi-container h3 {
            font-size: 1.05rem;
            padding-left: 12px;
        }

        .railway-taxi-list {
            padding: 12px 16px;
        }

        .railway-taxi-list li {
            font-size: 0.92rem;
            padding: 4px 0 4px 24px;
        }

        .railway-taxi-list li::before {
            top: 4px;
            font-size: 1rem;
        }
    }



    .destinations-section {
        background-color: #032D45;
        padding: 70px 20px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .destinations-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    /* H2 */
    .destinations-container h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 18px 0;
        letter-spacing: -0.5px;
        line-height: 1.2;
        border-left: 6px solid #f39c12;
        padding-left: 20px;
    }

    /* Intro paragraph */
    .destinations-container .intro-text {
        font-size: 1.08rem;
        line-height: 1.8;
        color: #f0f6fa;
        text-align: justify;
        margin-bottom: 36px;
    }

    /* -------- DESTINATION BLOCK -------- */
    .dest-block {
        margin-bottom: 28px;
    }

    .dest-block:last-of-type {
        margin-bottom: 0;
    }

    /* H3 – each destination name */
    .dest-block h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #ffffff;
        margin: 0 0 6px 0;
        line-height: 1.3;
        border-left: 4px solid #f39c12;
        padding-left: 16px;
    }

    /* Paragraph inside each destination */
    .dest-block p {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #e8f0f5;
        text-align: justify;
        margin: 0 0 0 20px;
        padding-left: 4px;
    }

    /* -------- RESPONSIVE -------- */
    @media screen and (max-width: 768px) {
        .destinations-section {
            padding: 50px 16px;
        }

        .destinations-container h2 {
            font-size: 1.9rem;
            padding-left: 16px;
            border-left-width: 5px;
        }

        .destinations-container .intro-text {
            font-size: 1.02rem;
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .dest-block h3 {
            font-size: 1.15rem;
            padding-left: 14px;
            border-left-width: 4px;
        }

        .dest-block p {
            font-size: 1.0rem;
            line-height: 1.6;
            margin-left: 16px;
        }
    }

    @media screen and (max-width: 480px) {
        .destinations-section {
            padding: 36px 12px;
        }

        .destinations-container h2 {
            font-size: 1.6rem;
            padding-left: 14px;
            border-left-width: 4px;
        }

        .destinations-container .intro-text {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 22px;
        }

        .dest-block h3 {
            font-size: 1.05rem;
            padding-left: 12px;
            border-left-width: 3px;
        }

        .dest-block p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-left: 12px;
        }
    }




    .choose-taxi-section {
        background-color: #ffffff;
        padding: 70px 20px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .choose-taxi-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 48px;
    }

    /* -------- IMAGE COLUMN -------- */
    .choose-taxi-image {
        flex: 1 1 42%;
        min-width: 260px;
    }

    .choose-taxi-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        transition: transform 0.3s ease;
    }

    .choose-taxi-image img:hover {
        transform: scale(1.01);
    }

    /* -------- CONTENT COLUMN -------- */
    .choose-taxi-content {
        flex: 1 1 52%;
        min-width: 280px;
    }

    /* H2 */
    .choose-taxi-content h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #1a2a3a;
        margin: 0 0 18px 0;
        letter-spacing: -0.5px;
        line-height: 1.2;
        border-bottom: 4px solid #032D45;
        padding-bottom: 14px;
        display: inline-block;
    }

    /* Paragraphs – all justified */
    .choose-taxi-content p {
        font-size: 1.08rem;
        line-height: 1.8;
        color: #2c3e50;
        text-align: justify;
        margin-bottom: 18px;
    }

    /* H3 headings */
    .choose-taxi-content h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #032D45;
        margin: 26px 0 8px 0;
        line-height: 1.3;
        border-left: 5px solid #f39c12;
        padding-left: 16px;
    }

    /* Last paragraph */
    .choose-taxi-content p:last-of-type {
        margin-bottom: 0;
    }

    /* -------- RESPONSIVE -------- */
    @media screen and (max-width: 900px) {
        .choose-taxi-container {
            flex-direction: column;
            gap: 32px;
        }

        .choose-taxi-image {
            flex: 1 1 100%;
            min-width: 0;
            width: 100%;
        }

        .choose-taxi-content {
            flex: 1 1 100%;
            min-width: 0;
        }

        .choose-taxi-content h2 {
            font-size: 1.9rem;
            padding-bottom: 10px;
            border-bottom-width: 3px;
        }

        .choose-taxi-content p {
            font-size: 1.0rem;
            line-height: 1.7;
        }

        .choose-taxi-content h3 {
            font-size: 1.15rem;
            padding-left: 14px;
            border-left-width: 4px;
        }
    }

    @media screen and (max-width: 480px) {
        .choose-taxi-section {
            padding: 36px 12px;
        }

        .choose-taxi-content h2 {
            font-size: 1.6rem;
            padding-bottom: 8px;
            border-bottom-width: 3px;
        }

        .choose-taxi-content p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .choose-taxi-content h3 {
            font-size: 1.05rem;
            padding-left: 12px;
            border-left-width: 3px;
        }
    }



    .travellers-section {
        background-color: #032D45;
        padding: 70px 20px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .travellers-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    /* H2 */
    .travellers-container h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 28px 0;
        letter-spacing: -0.5px;
        line-height: 1.2;
        border-left: 6px solid #f39c12;
        padding-left: 20px;
    }

    /* H3 headings */
    .travellers-container h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #ffffff;
        margin: 30px 0 10px 0;
        line-height: 1.3;
        border-left: 4px solid #f39c12;
        padding-left: 16px;
    }

    /* Paragraphs – all justified */
    .travellers-container p {
        font-size: 1.08rem;
        line-height: 1.8;
        color: #f0f6fa;
        text-align: justify;
        margin: 0 0 6px 20px;
        padding-left: 4px;
    }

    /* Remove bottom margin on last paragraph of each block */
    .travellers-container .h3-block p:last-of-type {
        margin-bottom: 0;
    }

    /* Wrapper for each H3 + its paragraphs */
    .h3-block {
        margin-bottom: 28px;
    }

    .h3-block:last-of-type {
        margin-bottom: 0;
    }

    /* -------- RESPONSIVE -------- */
    @media screen and (max-width: 768px) {
        .travellers-section {
            padding: 50px 16px;
        }

        .travellers-container h2 {
            font-size: 1.9rem;
            padding-left: 16px;
            border-left-width: 5px;
        }

        .travellers-container h3 {
            font-size: 1.15rem;
            padding-left: 14px;
            border-left-width: 4px;
        }

        .travellers-container p {
            font-size: 1.0rem;
            line-height: 1.7;
            margin-left: 16px;
        }
    }

    @media screen and (max-width: 480px) {
        .travellers-section {
            padding: 36px 12px;
        }

        .travellers-container h2 {
            font-size: 1.6rem;
            padding-left: 14px;
            border-left-width: 4px;
        }

        .travellers-container h3 {
            font-size: 1.05rem;
            padding-left: 12px;
            border-left-width: 3px;
        }

        .travellers-container p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-left: 12px;
        }
    }



    .advance-booking-section {
        background-color: #ffffff;
        padding: 70px 20px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .advance-booking-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    /* -------- CENTERED HEADING -------- */
    .advance-booking-container h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #1a2a3a;
        text-align: center;
        margin: 0 0 16px 0;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }

    /* decorative underline accent */
    .advance-booking-container .title-underline {
        width: 80px;
        height: 4px;
        background: #f39c12;
        margin: 0 auto 24px auto;
        border-radius: 4px;
    }

    /* -------- INTRO PARAGRAPH (centered) -------- */
    .advance-booking-container .intro-text {
        font-size: 1.08rem;
        line-height: 1.8;
        color: #2c3e50;
        text-align: center;
        max-width: 780px;
        margin: 0 auto 40px auto;
    }

    /* -------- FEATURE GRID (the "different" part) -------- */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        margin-bottom: 40px;
    }

    .feature-card {
        background: #f8fafc;
        padding: 18px 16px;
        border-radius: 12px;
        border: 1px solid #e9edf2;
        border-left: 5px solid #f39c12;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        text-align: left;
    }

    .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(3, 45, 69, 0.08);
    }

    .feature-card span {
        font-size: 1.05rem;
        font-weight: 600;
        color: #032D45;
        display: block;
        line-height: 1.4;
    }

    

    /* -------- BOTTOM PARAGRAPHS (fully justified) -------- */
    .advance-booking-container .bottom-text {
        font-size: 1.08rem;
        line-height: 1.8;
        color: #2c3e50;
        text-align: justify;
        max-width: 900px;
        margin: 0 auto 18px auto;
    }

    .advance-booking-container .bottom-text:last-of-type {
        margin-bottom: 0;
    }

    /* -------- RESPONSIVE -------- */
    @media screen and (max-width: 992px) {
        .feature-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media screen and (max-width: 768px) {
        .advance-booking-section {
            padding: 50px 16px;
        }

        .advance-booking-container h2 {
            font-size: 1.9rem;
        }

        .advance-booking-container .intro-text {
            font-size: 1.02rem;
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .feature-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            margin-bottom: 32px;
        }

        .feature-card {
            padding: 14px 14px;
        }

        .feature-card span {
            font-size: 0.98rem;
        }

        .advance-booking-container .bottom-text {
            font-size: 1.02rem;
            line-height: 1.7;
        }
    }

    @media screen and (max-width: 480px) {
        .advance-booking-section {
            padding: 36px 12px;
        }

        .advance-booking-container h2 {
            font-size: 1.6rem;
        }

        .advance-booking-container .title-underline {
            width: 60px;
            height: 3px;
            margin-bottom: 18px;
        }

        .advance-booking-container .intro-text {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .feature-grid {
            grid-template-columns: 1fr;
            gap: 12px;
            margin-bottom: 26px;
        }

        .feature-card {
            padding: 12px 16px;
        }

        .feature-card span {
            font-size: 0.95rem;
        }

        .advance-booking-container .bottom-text {
            font-size: 0.95rem;
            line-height: 1.6;
        }
    }





    /* -------- CHECKLIST SECTION (dark) -------- */
    .checklist-section {
        background-color: #032D45;
        padding: 70px 20px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .checklist-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .checklist-container h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 20px 0;
        letter-spacing: -0.5px;
        line-height: 1.2;
        border-left: 6px solid #f39c12;
        padding-left: 20px;
    }

    .checklist-container p {
        font-size: 1.08rem;
        line-height: 1.8;
        color: #f0f6fa;
        text-align: justify;
        margin-bottom: 20px;
    }

    /* checklist items */
    .checklist {
        list-style: none;
        padding: 0;
        margin: 20px 0 30px 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 30px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 20px 28px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .checklist li {
        font-size: 1.05rem;
        line-height: 1.6;
        color: #e8f0f5;
        text-align: justify;
        padding: 5px 0 5px 32px;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .checklist li:last-child {
        border-bottom: none;
    }

    /* checkmark custom bullet */
    .checklist li::before {
        content: "✓";
        position: absolute;
        left: 2px;
        top: 5px;
        color: #f39c12;
        font-size: 1.4rem;
        font-weight: 700;
    }

    /* -------- RESPONSIVE (dark section) -------- */
    @media screen and (max-width: 768px) {
        .checklist-section {
            padding: 50px 16px;
        }

        .checklist-container h2 {
            font-size: 1.9rem;
            padding-left: 16px;
            border-left-width: 5px;
        }

        .checklist-container p {
            font-size: 1.0rem;
            line-height: 1.7;
        }

        .checklist {
            grid-template-columns: 1fr;
            gap: 4px;
            padding: 16px 20px;
        }

        .checklist li {
            font-size: 0.98rem;
            padding: 5px 0 5px 28px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .checklist li::before {
            top: 5px;
            font-size: 1.2rem;
        }
    }

    @media screen and (max-width: 480px) {
        .checklist-section {
            padding: 36px 12px;
        }

        .checklist-container h2 {
            font-size: 1.6rem;
            padding-left: 14px;
            border-left-width: 4px;
        }

        .checklist-container p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .checklist {
            padding: 12px 16px;
        }

        .checklist li {
            font-size: 0.92rem;
            padding: 4px 0 4px 26px;
        }

        .checklist li::before {
            top: 4px;
            font-size: 1.1rem;
        }
    }

    
    /* SECTION 2: Outstation Travel (white bg)      */
    

    .outstation-section {
        background-color: #ffffff;
        padding: 70px 20px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .outstation-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .outstation-container h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #1a2a3a;
        margin: 0 0 20px 0;
        letter-spacing: -0.5px;
        line-height: 1.2;
        border-bottom: 4px solid #032D45;
        padding-bottom: 14px;
        display: inline-block;
    }

    .outstation-container p {
        font-size: 1.08rem;
        line-height: 1.8;
        color: #2c3e50;
        text-align: justify;
        margin-bottom: 20px;
    }

    /* list of example routes – style as minimal bullets */
    .route-list {
        list-style: none;
        padding: 0;
        margin: 10px 0 20px 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px 30px;
        background: #f8fafc;
        border-radius: 12px;
        padding: 18px 24px;
        border: 1px solid #e9edf2;
    }

    .route-list li {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #2c3e50;
        text-align: justify;
        padding: 5px 0 5px 28px;
        position: relative;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .route-list li:last-child {
        border-bottom: none;
    }

    .route-list li::before {
        content: "✓";
        position: absolute;
        left: 2px;
        top: 5px;
        color: #f39c12;
        font-size: 1.2rem;
        font-weight: 600;
    }

    /* last paragraph – no extra margin */
    .outstation-container p:last-of-type {
        margin-bottom: 0;
    }

    /* -------- RESPONSIVE (white section) -------- */
    @media screen and (max-width: 768px) {
        .outstation-section {
            padding: 50px 16px;
        }

        .outstation-container h2 {
            font-size: 1.9rem;
            padding-bottom: 10px;
            border-bottom-width: 3px;
        }

        .outstation-container p {
            font-size: 1.0rem;
            line-height: 1.7;
        }

        .route-list {
            grid-template-columns: 1fr;
            gap: 4px;
            padding: 16px 20px;
        }

        .route-list li {
            font-size: 0.98rem;
            padding: 5px 0 5px 26px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }

        .route-list li::before {
            top: 5px;
            font-size: 1.1rem;
        }
    }

    @media screen and (max-width: 480px) {
        .outstation-section {
            padding: 36px 12px;
        }

        .outstation-container h2 {
            font-size: 1.6rem;
            padding-bottom: 8px;
            border-bottom-width: 3px;
        }

        .outstation-container p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .route-list {
            padding: 12px 16px;
        }

        .route-list li {
            font-size: 0.92rem;
            padding: 4px 0 4px 24px;
        }

        .route-list li::before {
            top: 4px;
            font-size: 1rem;
        }
    }



    .faq-answer {
    cursor: pointer;
}
    .faq-section {
        background-color: #032D45;
        padding: 70px 20px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    /* -------- H2 HEADING -------- */
    .faq-container h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 40px 0;
        letter-spacing: -0.5px;
        line-height: 1.2;
        border-left: 6px solid #f39c12;
        padding-left: 20px;
    }

    /* -------- FAQ ITEM -------- */
    .faq-item {
        background: rgba(255, 255, 255, 0.04);
        border-radius: 10px;
        margin-bottom: 14px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        overflow: hidden;
        transition: border-color 0.3s ease;
    }

    .faq-item:hover {
        border-color: rgba(243, 156, 18, 0.3);
    }

    /* -------- QUESTION (clickable) -------- */
    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 24px;
        cursor: pointer;
        user-select: none;
        transition: background 0.25s ease;
    }

    .faq-question:hover {
        background: rgba(255, 255, 255, 0.04);
    }

    .faq-question h3 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #ffffff;
        margin: 0;
        line-height: 1.4;
        padding-right: 20px;
        flex: 1;
    }

    /* -------- TOGGLE ICON (+ / –) -------- */
    .faq-toggle {
        flex: 0 0 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(243, 156, 18, 0.15);
        border: 2px solid rgba(243, 156, 18, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        color: #f39c12;
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1;
    }

    .faq-item.active .faq-toggle {
        background: rgba(243, 156, 18, 0.25);
        border-color: #f39c12;
        transform: rotate(45deg);
    }

    /* -------- ANSWER (collapsible) -------- */
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    padding 0.3s ease,
                    opacity 0.3s ease;
        opacity: 0;
        padding: 0 24px;
    }

    .faq-item.active .faq-answer {
        max-height: 300px; /* enough for all answers */
        opacity: 1;
        padding: 0 24px 22px 24px;
    }

    .faq-answer p {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #e8f0f5;
        text-align: justify;
        margin: 0;
    }

    /* -------- RESPONSIVE -------- */
    @media screen and (max-width: 768px) {
        .faq-section {
            padding: 50px 16px;
        }

        .faq-container h2 {
            font-size: 1.9rem;
            padding-left: 16px;
            border-left-width: 5px;
            margin-bottom: 30px;
        }

        .faq-question {
            padding: 16px 18px;
        }

        .faq-question h3 {
            font-size: 1.0rem;
            padding-right: 14px;
        }

        .faq-toggle {
            flex: 0 0 26px;
            height: 26px;
            font-size: 1.0rem;
        }

        .faq-answer p {
            font-size: 0.98rem;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            padding: 0 18px 18px 18px;
        }
    }

    @media screen and (max-width: 480px) {
        .faq-section {
            padding: 36px 12px;
        }

        .faq-container h2 {
            font-size: 1.6rem;
            padding-left: 14px;
            border-left-width: 4px;
            margin-bottom: 24px;
        }

        .faq-question {
            padding: 14px 14px;
        }

        .faq-question h3 {
            font-size: 0.95rem;
            padding-right: 10px;
        }

        .faq-toggle {
            flex: 0 0 24px;
            height: 24px;
            font-size: 0.9rem;
        }

        .faq-answer p {
            font-size: 0.92rem;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            padding: 0 14px 16px 14px;
        }
    }




    .book-taxi-section {
        background-color: #ffffff;
        padding: 70px 20px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .book-taxi-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    /* -------- H2 HEADING (centered) -------- */
    .book-taxi-container h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #1a2a3a;
        text-align: center;
        margin: 0 0 12px 0;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }

    /* gold underline accent */
    .book-taxi-container .title-underline {
        width: 80px;
        height: 4px;
        background: #f39c12;
        margin: 0 auto 28px auto;
        border-radius: 4px;
    }

    /* -------- PARAGRAPHS (all justified) -------- */
    .book-taxi-container p {
        font-size: 1.08rem;
        line-height: 1.8;
        color: #2c3e50;
        text-align: justify;
        margin-bottom: 18px;
        max-width: 860px;
        margin-left: auto;
        margin-right: auto;
    }

    .book-taxi-container p:last-of-type {
        margin-bottom: 36px;
    }

    /* -------- CTA GRID (3 cards) -------- */
    .cta-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .cta-card {
        flex: 1 1 200px;
        max-width: 280px;
        background: #f8fafc;
        border: 1px solid #e9edf2;
        border-radius: 14px;
        padding: 28px 20px 24px 20px;
        text-align: center;
        text-decoration: none;
        color: #1a2a3a;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .cta-card:hover {
        background: #ffffff;
        border-color: #f39c12;
        box-shadow: 0 8px 30px rgba(3, 45, 69, 0.10);
        transform: translateY(-4px);
    }

    /* icon style */
    .cta-card .cta-icon {
        font-size: 2.8rem;
        line-height: 1;
        margin-bottom: 12px;
        display: block;
    }

    .cta-card .cta-label {
        font-size: 1.15rem;
        font-weight: 600;
        color: #032D45;
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .cta-card .cta-sub {
        font-size: 0.92rem;
        color: #5a6d7e;
        line-height: 1.4;
    }

    /* specific card accents (optional) */
    .cta-card.cta-book {
        border-left: 5px solid #032D45;
    }

    .cta-card.cta-call {
        border-left: 5px solid #f39c12;
    }

    .cta-card.cta-whatsapp {
        border-left: 5px solid #25D366;
    }

    .cta-card.cta-book:hover {
        border-left: 5px solid #032D45;
    }
    .cta-card.cta-call:hover {
        border-left: 5px solid #f39c12;
    }
    .cta-card.cta-whatsapp:hover {
        border-left: 5px solid #25D366;
    }

    /* -------- RESPONSIVE -------- */
    @media screen and (max-width: 768px) {
        .book-taxi-section {
            padding: 50px 16px;
        }

        .book-taxi-container h2 {
            font-size: 1.9rem;
        }

        .book-taxi-container .title-underline {
            width: 60px;
            margin-bottom: 22px;
        }

        .book-taxi-container p {
            font-size: 1.0rem;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .book-taxi-container p:last-of-type {
            margin-bottom: 30px;
        }

        .cta-grid {
            gap: 18px;
        }

        .cta-card {
            flex: 1 1 160px;
            min-width: 140px;
            padding: 22px 16px 20px 16px;
        }

        .cta-card .cta-icon {
            font-size: 2.4rem;
        }

        .cta-card .cta-label {
            font-size: 1.05rem;
        }
    }

    @media screen and (max-width: 480px) {
        .book-taxi-section {
            padding: 36px 12px;
        }

        .book-taxi-container h2 {
            font-size: 1.6rem;
        }

        .book-taxi-container .title-underline {
            width: 50px;
            height: 3px;
            margin-bottom: 18px;
        }

        .book-taxi-container p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .book-taxi-container p:last-of-type {
            margin-bottom: 24px;
        }

        .cta-grid {
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .cta-card {
            flex: 0 0 auto;
            width: 100%;
            max-width: 320px;
            padding: 18px 16px 16px 16px;
            flex-direction: row;
            justify-content: flex-start;
            gap: 16px;
            border-left-width: 6px !important;
            border-top: 1px solid #e9edf2;
            border-right: 1px solid #e9edf2;
            border-bottom: 1px solid #e9edf2;
        }

        .cta-card .cta-icon {
            font-size: 2.0rem;
            margin-bottom: 0;
            flex: 0 0 44px;
            text-align: center;
        }

        .cta-card .cta-label {
            font-size: 1.0rem;
            margin-bottom: 0;
        }

        .cta-card .cta-sub {
            display: none;
        }

        .cta-card .cta-text-wrap {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
    }

