.header {
    position: relative;
    z-index: 9;
    padding: 17px 90px;
    color: white;
    background: #34292D; 
}
@media (min-width: 569px) and (max-width: 1024px) {
    .header {
        padding: 17px 40px;
    }
}

@media (max-width: 568px) {
    .header {
        padding: 17px 16px;
    }
}

.mobileLink {
    display: none;
}

.wrapper {
    max-width: 1440px !important;
    margin: 0 auto;
}

@media (max-width: 568px) {
    .wrapper {
        margin: 0 auto;
        display: flex;
        align-items: center;
        column-gap: 31px;
        justify-content: space-between;
    }
}

.firstBlock {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wrapper a, .wrapper .link {
    text-decoration: none;
    cursor: pointer;
    background-color: inherit;
    outline: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: white;
}

.get_in_touch {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 568px) {
    .get_in_touch {
        display: none;
    }
}

.get_in_touch_btn {
    display: flex;
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 1.5px solid white;
}

.phone_link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: white;
}

.burgerMenu {
    display: none;
    cursor: pointer;
}

.burger {
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.links {
    display: flex;
    gap: 24px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdownToggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.dropdownToggle:hover .arrow {
    transform: rotate(180deg);
}

.arrow {
    margin-left: 5px;
    font-size: 12px;
}

.dropdownContent {
    display: none;
    position: absolute;
    min-width: 160px;
    background-color: #000; 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 2;
    top: 100%;
    left: 0;
    border-radius: 30px;
    padding: 20px;
    width: 257px;
}

.dropdownContent a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    color: white;
}

.dropdown:hover .dropdownContent {
    display: block;
}

.mobileLinks {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 97px;
    right: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    background: #000; 
}

.mobileLinks a, .mobileLinks .link {
    margin: 10px 0;
    color: white;
}

.logo {
    height: 40px;
    width: auto;
}
@media (max-width: 568px) {
    .links {
        display: none;
    }
    
    .phone_link {
        display: none;
    }
    
    .burgerMenu {
        display: flex;
        align-items: center;
        margin-left: auto;
    }
    
    .mobileLinks {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        z-index: 999;
        align-items: left;
        justify-content: flex-start;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        gap: 24px;
        background: #000; 
    }
    
    .mobileLinks a,
    .mobileLinks .link {
        margin: 0 !important;
        color: white;
        text-align: left;
    }
    
    .phone {
        display: flex;
        width: 100%;
        background-color: transparent;
        border-radius: 0;
        border: none;
        max-width: unset;
        justify-content: center;
        font-size: 16px;
        color: white;
    }
    
    .sectionTitle {
        color: white;
        margin-top: 16px;
    }
    
    .close_btn {
        width: 24px;
        height: 24px;
        position: absolute;
        right: 16px;
        top: 16px;
        z-index: 2;
        cursor: pointer;
        border: none;
        background-color: transparent;
    }
    
    .close_btn:before,
    .close_btn:after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        width: 100%;
        height: 3px;
        border-radius: 2px;
        background-color: white;
        transform: translateY(-50%) rotate(45deg);
    }
    
    .close_btn:after {
        transform: translateY(-50%) rotate(-45deg);
    }
}
.dropdownToggle:hover {
    opacity: 0.8;
}

.mobileLinks a:hover {
    opacity: 0.8;
}
@media (max-width: 568px) {
    .logo {
        height: 32px;
    }
}
