.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.top-bar {
    background-color: #15803D;
    color: #ffffff;
    padding: 8px 0;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    white-space: nowrap;
}

.quick-links {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.quick-link {
    background-color: #EA580C;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.quick-link:hover {
    background-color: #c2410c;
}

.main-header {
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    background-color: #ffffff;
}

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

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    width: 150px;
    height: 70px;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #EA580C;
    border-top: 1px solid #EA580C;
    padding: 6px 0;
    font-size: 12px;
}

.info-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.fraud-hotline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    white-space: nowrap;
}

.fraud-hotline svg {
    flex-shrink: 0;
}

.fraud-hotline span {
    font-size: 12px;
}

.fraud-hotline strong {
    color: #EA580C;
    font-weight: 600;
}

.latest-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.latest-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.latest-label {
    color: #15803D;
    font-weight: 500;
    font-size: 12px;
}

.latest-link {
    color: #333;
    text-decoration: none;
    font-size: 12px;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s;
}

.latest-link:hover {
    color: #EA580C;
    text-decoration: underline;
}

.info-separator {
    color: #ccc;
    font-size: 12px;
}

.mobile-menu-button {
    display: none;
    background-color: #15803D;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.desktop-nav {
    background-color: #000000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 48px;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    height: 100%;
}

.nav-item-wrapper {
    position: relative;
    height: 100%;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    height: 100%;
    transition: background-color 0.2s;
}

@media (max-width: 1260px) {
    .nav-link {
        padding: 0 12px;
        font-size: 13px;
    }
}

@media (max-width: 1120px) {
    .nav-link {
        padding: 0 9px;
        font-size: 12px;
    }
}

.nav-link.active {
    background-color: #EA580C;
}

.nav-link:hover {
    background-color: #EA580C;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 4px 4px;
    z-index: 1000;
    border-top: 3px solid #EA580C;
}

.dropdown-link {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.dropdown-link:hover {
    background-color: #f8f9fa;
    color: #EA580C;
}

.dropdown-link.active {
    background-color: #f8f9fa;
    color: #EA580C;
    font-weight: 600;
}

/* Mobile Navigation Styles - Simplified */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    z-index: 1000000;
}

.mobile-nav-header {
    padding: 20px;
    background-color: #15803D;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo-container {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 4px;
}

.mobile-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-title {
    margin: 0;
    font-size: 16px;
    flex: 1;
    padding-left: 10px;
}

.mobile-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-items {
    padding: 10px 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.mobile-nav-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    padding: 15px 0;
    display: block;
    flex: 1;
}

.mobile-nav-link.active {
    color: #15803D;
    font-weight: 600;
}

.mobile-submenu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-submenu {
    background-color: #f8f9fa;
    display: none;
}

.mobile-submenu-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 12px 20px 12px 40px;
    display: block;
    border-top: 1px solid #e5e5e5;
}

.mobile-submenu-link.active {
    color: #15803D;
    font-weight: 600;
}

.mobile-quick-links {
    padding: 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mobile-quick-link {
    background-color: #EA580C;
    color: #ffffff;
    text-decoration: none;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.mobile-contact-info {
    padding: 20px;
    border-top: 1px solid #e5e5e5;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    margin-bottom: 10px;
    font-size: 13px;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .logo-container {
        width: 100px !important;
        height: 50px !important;
    }

    .mobile-menu-button {
        display: flex !important;
    }

    .nav-menu {
        display: none;
    }
}