    /* --- Global Styles & Variables (Consistent with other pages) --- */
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

        :root {
            --primary-color: #004AAD;
            --secondary-color: #F7941D;
            --dark-color: #121E31;
            --light-color: #FFFFFF;
            --gray-color: #f4f7fc;
            --text-color: #4A4A4A;
            --font-family: 'Poppins', sans-serif;
        }


        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--font-family); color: var(--text-color); line-height: 1.6; background-color: var(--light-color); }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        h1, h2, h3, h4 { color: var(--dark-color); margin-bottom: 20px; line-height: 1.2; }
        h1 { font-size: 3rem; }
        h2 { font-size: 2.25rem; text-align: center; }
        h3 { font-size: 1.25rem; }
        h4 { font-size: 1.1rem; }
        section { padding: 80px 0; }
        .btn { display: inline-block; padding: 12px 28px; border-radius: 5px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; cursor: pointer; border: 2px solid transparent; }
        .btn-primary { background-color: var(--secondary-color); color: var(--light-color); border-color: var(--secondary-color); }
        .btn-primary:hover { background-color: transparent; color: var(--secondary-color); }

        /* --- Header & Navigation --- */
        .main-header { background-color: var(--light-color); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
        .main-header .container { display: flex; justify-content: space-between; align-items: center; }
        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo img {
            height: 50px;
        }
        
        .logo-text {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }
        .main-nav ul { list-style: none; display: flex; gap: 30px; }
        .main-nav a { text-decoration: none; color: var(--dark-color); font-weight: 600; position: relative; padding-bottom: 5px; }
        .main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-color); transition: width 0.3s ease; }
        .main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

        /* --- Hamburger Menu --- */
        .hamburger-menu { display: none; cursor: pointer; background: none; border: none; padding: 0; z-index: 1002; }
        .hamburger-menu span { display: block; width: 25px; height: 3px; margin: 5px 0; background-color: var(--dark-color); transition: all 0.3s ease-in-out; }
        .hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger-menu.active span:nth-child(2) { opacity: 0; }
        .hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

        /* --- Page Header/Banner --- */
        .page-header { padding: 60px 0; text-align: center; position: relative; background: url('/Images/Hungary/hung4.jpg') no-repeat center center/cover; }
        .page-header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 30, 80, 0.7); }
        .page-header-content { position: relative; z-index: 1; }
        .page-header h1, .page-header p { color: var(--light-color); }

        /* --- Destinations Section --- */
        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .destination-card {
            position: relative;
            height: 350px;
            border-radius: 8px;
            overflow: hidden;
            color: var(--light-color);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
             box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .destination-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .destination-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
            transition: transform 0.4s ease;
        }

        .destination-card:hover img {
            transform: scale(1.1);
        }

        .destination-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
            z-index: -1;
        }
        
        .destination-card a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
        }
        .destination-card h3 {
            color: var(--light-color);
            margin-bottom: 5px;
        }
         .destination-card p {
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        /* --- Animation --- */
        .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }
        
        /* --- Footer --- */
        footer { background-color: var(--dark-color); color: #ccc; padding: 60px 0 20px; }
        .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer-col h4 { color: var(--light-color); margin-bottom: 20px; position: relative; }
        .footer-col h4::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 40px; height: 2px; background-color: var(--secondary-color); }
        .footer-col ul { list-style: none; padding-left: 0; }
        .footer-col a { color: #ccc; text-decoration: none; transition: color 0.3s ease; display: block; margin-bottom: 10px; }
        .footer-col a:hover { color: var(--secondary-color); }
        .social-links { margin-top: 15px; }
        .social-links a { display: inline-block; margin-right: 15px; }
        .social-links a svg { width: 24px; height: 24px; fill: #ccc; transition: fill 0.3s ease; }
        .social-links a:hover svg { fill: var(--secondary-color); }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #333; font-size: 0.9rem; }
        
        /* --- Responsive Design --- */
        @media(max-width: 768px) {
            h1 { font-size: 2.5rem; } h2 { font-size: 1.8rem; } section { padding: 60px 0; }
            .main-header .container { flex-direction: row; justify-content: space-between; position: relative; }
            .hamburger-menu { display: block; }
            .main-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--light-color); box-shadow: 0 5px 10px rgba(0,0,0,0.1); padding: 20px 0; }
            .main-nav.nav-open { display: block; }
            .main-nav ul { flex-direction: column; align-items: center; gap: 20px; }
        }
        /* --- Dropdown Menu Styles --- */
/* Container for the dropdown */
.main-nav .dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

/* The dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Positions it right below the "Connect" link */
    left: 0;
    background-color: var(--light-color);
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 9999;
    border-top: 3px solid var(--secondary-color); /* Orange top border accent */
    border-radius: 0 0 5px 5px;
    overflow: hidden;
}

/* Show the dropdown menu on hover */
.dropdown-item:hover .dropdown-content {
    display: block;
}

/* Style the links inside the dropdown */
.dropdown-content a {
    color: var(--dark-color) !important; /* Force dark text against white background */
    padding: 12px 16px;
    text-decoration: none;
    display: flex !important; /* Ensure icon and text align nicely */
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
}

/* Remove underline effect from main nav for these specific links */
.dropdown-content a::after {
    display: none;
}

/* Hover effect for individual dropdown links */
.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: var(--primary-color) !important; /* Blue text on hover */
    padding-left: 20px; /* Subtle slide effect */
}

/* Style the SVG icons in the dropdown */
.dropdown-content a svg {
    width: 18px;
    height: 18px;
    stroke: currentColor; /* Allows icon to change color with text */
    transition: stroke 0.3s ease;
}

