    @import url('https://fonts.googleapis.com/css2?family=Onest:wght@300;400;500;600;700&display=swap');
    
    body {
        background-color: #f8f9fa;
        font-family: 'Onest', sans-serif;
    }
    header {
        background-color: #ffffff;
        border-bottom: 1px solid #ddd;
        color: #333;
    }
    header .nav-link {
        color: #003580;
    }
    header .nav-link:hover {
        color: #0071C2;
    }
    .navbar-toggler {
        border: none; /* Remove the border from the toggler button */
    }
    .navbar-toggler-icon {
        background-image: none; /* Remove the default background image */
        border: 1px solid #003580; /* Add a border to the icon */
        padding: 5px; /* Add some padding to the icon */
        color: #003580; /* Change the color to match the theme */
    }
    .jumbotron {
        background: url('/bg2.jpg') no-repeat center center;
        background-size: cover;
        position: relative;
        color: #fff;
        width: 100vw;
        height: 40vw;
        min-height: 600px;
        display: flex; /* Use flexbox to center content */
        align-items: center; /* Vertical centering */
        justify-content: center; /* Horizontal centering */
        text-align: center; /* Center text within the container */
    }

    .jumbotron::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 53, 128, 0.85); /* Blue overlay with 70% opacity */
        z-index: 1;
    }
    .jumbotron .container {
        position: relative;
        z-index: 2;
        max-width: 800px; /* Optional: Limit the width of the content */
    }
    .jumbotron .btn {
        background-color: #008234;
        border-color: #008234;
    }
    .jumbotron .btn:hover {
        background-color: #005f27;
        border-color: #005f27;
    }
    .details-section, .items-section {
        background-color: #ffffff;
        color: #333;
        padding: 3rem 2rem;
    }
    .details-section h2, .items-section h2 {
        color: #003580;
    }
    .items-section .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling for mobile devices */
    }
    .items-section .col-md-4 {
        flex: 0 0 auto;
        margin-right: 15px; /* Spacing between items */
    }
    .items-section .scroll-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: #003580;
        color: #fff;
        border: none;
        padding: 10px;
        cursor: pointer;
        z-index: 2;
    }
    .scroll-button.left {
        left: 0;
    }
    .scroll-button.right {
        right: 0;
    }
    footer {
        background-color: #f3f4f6;
        color: #333;
    }
    footer h5 {
        color: #003580;
    }
    footer a {
        color: #0071C2;
    }
    footer a:hover {
        color: #005bb5;
    }
    @media (max-width: 767.98px) { /* Custom styles for mobile view */
        .navbar-collapse {
            justify-content: flex-end; /* Align items to the right */
        }
        .navbar-nav {
            margin-top: 1rem; /* Add more space under the header */
        }
    }
   /* Styles for the language selector dropdown */
    .language-selector {
        position: relative;
        display: inline-block;
    }

    .language-button {
        background-color: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
    }

    .language-button img {
        height: 20px;
        margin-right: 5px;
    }

    .language-dropdown {
        display: none;
        position: absolute;
        background-color: #ffffff;
        min-width: 100px;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 1;
        border-radius: 5px;
        margin-top: 10px;
        right: 0;
    }

    .language-dropdown a {
        color: #333;
        padding: 8px 12px;
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .language-dropdown a:hover {
        background-color: #f1f1f1;
    }

    .language-dropdown a img {
        height: 16px;
        margin-right: 5px;
    }

    .language-selector:hover .language-dropdown {
        display: block;
    }

    /* Adjust language selector position for mobile view */
    @media (max-width: 767.98px) {
        .language-selector {
            order: 1; /* Show before the navbar toggler */
        }
    }
    .all-destinations-section .card-img-top {
        height: auto; /* Allow the image to maintain its aspect ratio */
        width: 100%; /* Ensure the image fills the card width */
        object-fit: cover; /* Crop the image to fit the card */
    }

    .all-destinations-section .card {
        height: 100%; /* Ensure card takes full height, maintaining consistency */
    }

    .all-destinations-section .card-body {
        flex-grow: 1; /* Allow the card body to grow and occupy available space */
    }
    .language-selection-section h2 {
        margin-bottom: 20px;
    }

    .language-card {
        display: flex;
        align-items: center;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background-color: #fff;
        transition: background-color 0.3s;
        cursor: pointer;
    }

    .language-card:hover {
        background-color: #f1f1f1;
    }

    .flag-icon {
        width: 32px; /* Adjust for 4x3 ratio */
        height: 24px; /* Adjust for 4x3 ratio */
        border: 1px solid #ddd; /* Optional: Add a border around the flag */
        border-radius: 3px; /* Optional: Add a slight rounding to the corners */
    }

    .language-name {
        font-size: 16px;
        font-weight: 500;
    }

    /* Responsive grid layout */
    @media (min-width: 768px) { /* Tablet and above */
        .language-card {
            justify-content: flex-start; /* Align items to the left */
        }
    }

    @media (max-width: 767.98px) { /* Mobile */
        .language-card {
            justify-content: center; /* Center items on mobile */
        }
    }
