/* header.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', Arial, sans-serif;
}

body {
    padding-top: 66px;
}

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 66px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 66px;
}

/* Mobile menu toggle styles */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    padding: 15px;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #333;
    position: relative;
    transition: all 0.3s;
}

.mobile-menu-toggle span:before,
.mobile-menu-toggle span:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: #333;
    left: 0;
    transition: all 0.3s;
}

.mobile-menu-toggle span:before {
    top: -8px;
}

.mobile-menu-toggle span:after {
    bottom: -8px;
}

/* Mobile menu active state */
.mobile-menu-toggle.active span {
    background: transparent;
}

.mobile-menu-toggle.active span:before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active span:after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile menu panel */
.mobile-menu-panel {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    z-index: 999;
}

.mobile-menu-panel.active {
    max-height: 1000px;
}

.mobile-menu-panel ul {
    list-style: none;
    padding: 15px;
}

.mobile-menu-panel li {
    margin-bottom: 15px;
}

.mobile-menu-panel a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Desktop menu styles */
#et-top-navigation {
    height: 52px;
    display: flex;
    align-items: center;
}

#top-menu {
    display: flex;
    list-style: none;
}

#top-menu > li {
    position: relative;
    margin: 0 10px;
}

#top-menu > li > a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 0;
    position: relative;
}

#top-menu > li > a:hover {
    color: #2ea3f2;
}

#top-menu > li.current-menu-item > a {
    color: #2ea3f2;
}

/* Responsive styles */
@media (max-width: 980px) {
    #top-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

.logo_container {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo_container img {
    height: 90%;
    width: auto;
    max-height: 121px;
}