.ph-1268-wrapper {
    position: relative;
    z-index: 999;
}

.ph-1268-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

.ph-1268-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.ph-1268-logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

.ph-1268-logo span {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.ph-1268-nav {
    display: none;
}

.ph-1268-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.ph-1268-nav-link {
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.ph-1268-hamburger {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    display: block;
    padding: 0;
}

.ph-1268-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 998;
}

.ph-1268-mobile-menu.is-active {
    max-height: 500px;
}

.ph-1268-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ph-1268-mobile-item {
    border-top: 1px solid rgba(0,0,0,0.05);
}

.ph-1268-mobile-item .ph-1268-nav-link {
    display: block;
    padding: 15px 20px;
}

/* Desktop Styles */
@media (min-width: 769px) {
    .ph-1268-nav {
        display: block;
    }
    .ph-1268-hamburger {
        display: none;
    }
    .ph-1268-mobile-menu {
        display: none !important;
    }
}