.header {
    position: relative;
    z-index: 10;
    padding-top: 8px;
	padding-bottom: 4px;
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo {
    align-items: center;
}

/* Navigation Styling */
.header-nav {
    padding-top: 27px;
    padding-bottom: 9px;
    display: flex;
}

.header-nav > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px; /* Space between the top-level menu items */
}

.header-nav ul li {
    position: relative; /* Important for dropdown positioning */
}

.header-nav ul li a {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.header-nav ul li a:hover {
    color: #CF002C;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 200px; /* Dropdown has consistent width */
}

.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu li a {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

.dropdown-menu li a:hover {
    color: #CF002C;
}

.sub-menu:hover .dropdown-menu {
    display: block; /* Makes the dropdown visible */
}


.header-social {
    padding-top: 27px;
    padding-bottom: 9px;
    display: flex;
    gap: 12px;
}

.header-social a {
    display: inline-block; /* Ensures each link behaves like a block-level element */
}

.header-social img {
    width: 35px; /* Adjust the size of the social icons as needed */
    height: 35px;
}
