@media (min-width: 1124px) {
    .accompany-text {
        display: none;
    }
    .header {
        width: 100%;
        background-color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        box-sizing: border-box;
    }
    .logo-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #ffeb3b;
        width: 60%;
        height: 100%;
        padding: 1%;
    }
    .logo-container img {
        width: 12vw;
        height: auto;
        transition: transform 0.3s ease;
    }
    .logo-container img:hover {
        transform: scale(1.1);
    }
    .header-nav {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        width: 40%;
        height: 100%;
    }
    .header-button {
        padding: 15px 55px;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: bold;
        text-align: center;
        position: relative;
        transition: all 0.3s ease;
    }

    .button-black {
        background-color: #000;
        color: #fff;
        border: none;
    }

    .button-black:hover {
        background-color: #fff;
        color: #000;
        box-shadow: 0 0 8px #000;
    }

    .button-yellow {
        background-color: #ffeb3b;
        color: #000;
    }

    .button-yellow:hover {
        background-color: #000;
        color: #ffeb3b;
        box-shadow: 0 0 8px #ffeb3b;
    }
    .background-overlay {
        background-color: #ffeb3b;
        width: 60%;
        height: 15vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
    }

}

@media (max-width: 1124px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        height: 60px;
    }
    .accompany-text {
        white-space: nowrap;
        font-size: 3vw;
        font-weight: 600;
    }
    .header-nav,
    .header-button {
        display: none;
    }

    .logo-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #ffeb3b;
        padding: 0 20px;
        height: 60px;
        box-sizing: border-box;
    }
    .left-group {
        display: flex;
        gap: 20px;
        align-items: center;
        overflow: hidden;
        white-space: nowrap;
    }
    .logo-container img {
        width: 20vw;
        height: auto;

    }
}
@media (max-width: 800px) and (min-width: 441px) {
    .logo-container img {
        width: 45vw;
        max-width: 200px;
        height: auto;
    }
}
@media (max-width: 440px) {
    .logo-container img {
        width: 50vw;
        max-width: 200px;
        height: auto;
    }
    .accompany-text {
        font-size: 4vw;
    }
}

