.sidebar {
    width: 38rem; 
    height: 100vh;
    position: fixed; 
    top: 0; 
    left: 0;
    padding: 5rem 5rem 4rem 5rem; 
    background-color: #fff;
    font-family: "futura-pt", sans-serif;
    border-right: 0.1rem solid #f0f0f0;
    z-index: 1000;
    display: flex; 
    flex-direction: column;
    box-sizing: border-box; 
    overflow-y: auto; 
    overflow-x: hidden;
    scrollbar-width: none; 
}

.sidebar::-webkit-scrollbar {
    display: none; 
}

.sidebar-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 8rem;
    flex-shrink: 0; 
}

.logo {
    width: 100%;
    max-width: 19rem;
    display: block;
}

.slogan {
    font-size: 4.5rem;
    margin-top: 0.2rem;
    color: #000;
    line-height: 1;
    font-weight: 400;
    white-space: nowrap; 
}

.businessDept{
    text-decoration: none;
}

.sidebar-nav {
    flex-shrink: 0;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav ul li {
    margin-bottom: 4.5rem;
}

.sidebar-nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 2.6rem;
    font-weight: 300;
    letter-spacing: 0.05rem;
    transition: opacity 0.3s ease;
}

.dropdown-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    list-style: none;
    padding-left: 2rem; 
    transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.dropdown:hover .dropdown-menu {
    max-height: 50rem;
    opacity: 1;
    margin-top: 2rem; 
    margin-bottom: 2rem;
}

.dropdown-menu li {
    margin-bottom: 1.5rem !important; 
    margin-left: 1rem;
}

.dropdown-menu li a {
    font-size: 2.0rem !important;
    font-weight: 300;
    opacity: 0.7;
}

.sidebar-footer {
    padding-top: 4rem;
    margin-top: auto;
    flex-shrink: 0;
    margin-bottom: 0; 
}

.sidebar-footer p {
    font-size: 2rem; 
    font-weight: 300;
    margin: 0.5rem 0; 
    line-height: 1.2; 
    padding: 0;
    list-style: none;
    background: none;
}

.link-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
}

.sidebar-icon {
    width: 2.2rem;
    height: auto;
    filter: brightness(0);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.link-with-icon:hover .sidebar-icon {
    opacity: 1;
}

.email-link-sidebar {
    text-decoration: none;
    color: black;
}
.email-link-sidebar:hover {
    text-decoration: underline;
    gap: 0.5rem;
    color: black;
}

.email-link-team.active{
    text-decoration: underline;
    text-underline-offset: 8px;     
    text-decoration-thickness: 0.5px; 
}

@media (min-width: 2500px) {
    .sidebar-footer {
        margin-top: auto; 
        padding-top: 6rem;
        margin-bottom: 0; 
    }
}