html {
    width: 100%;
    overflow-x: hidden;
}

header {
    width: 100%;
    background-color: transparent;
}

.header-content {
    width: 1200px;  /* Same as wrapper width */
    margin: 0 auto;
    position: relative;
}

header .header-logo {
    position: relative;
    top: 30px;
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1001;
}

.popup-content p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-family: 'Segoe WP Black', 'Segoe WP', 'Segoe UI', sans-serif;
}

.popup-button {
    background-color: #7825AF;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Segoe WP Black', 'Segoe WP', 'Segoe UI', sans-serif;
}

.popup-button:hover {
    background-color: #5a1c7f;
}

/* Responsive styles for header */
@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .header-content {
        width: 980px;  /* Match wrapper width for this breakpoint */
    }
    header .top-menu-header {
        height: 80px !important;
    }
    
    header .header-logo {
        width: 256px;
        height: 70px;   
        margin-top: -3px;
    } 
   
    
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .header-content {
        width: 100%;
        padding: 0 15px;
    }
    
    header .header-logo {
        width: 256px;
        height: 70px;
        margin-top: -30px;
        margin-left: -40px;
    }

    header nav {
        margin-top: -8px;
    }
    header nav a {
        font-size: 14px;
        padding: 5px 17px;
    }
} 

@media screen and (max-width: 767px) {
    .header-content {
        width: 100%;
        padding: 0 15px;
        margin-top: 0px;
    }

    header .header-logo {
        width: 256px;
        height: 70px;
        margin-top: -30px;
        margin-left: -40px;
    }

    .popup-content {
        padding: 1.5rem;
    }
    
    .popup-content p {
        font-size: 1rem;
    }
    
    .popup-button {
        padding: 0.6rem 1.5rem;
    }
}