/* Header Styles */
.white-bg {
    background: #fff;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.header .top-header {
    background: #000;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
}

.top-header-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.header .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo img {
    height: 31px;
    width: auto;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.menu > li > a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.menu-resource {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.menu-resource > li > a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.login-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn a {
    color: #fb0023;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-btn a:hover {
    color: #d0001c;
}

.primary-button {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
}

.primary-button:hover {
    background: #333;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 20px;
    min-width: 300px;
    z-index: 1001;
}

.feature-menu {
    left: 50%;
    transform: translateX(-50%);
}

.h-feature-row {
    display: flex;
    gap: 30px;
}

.h-feature-col h4 {
    margin: 0 0 10px 0;
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
}

.h-feature-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.h-feature-col li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
}

.h-feature-col li a:hover {
    color: #0066cc;
}

.h-feature-col .icon img {
    width: 24px;
    height: 24px;
}

.h-see-all {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.h-see-all a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Resource menu */
.resource-col-cover {
    display: flex;
    gap: 40px;
}

.resource-col h3 {
    margin: 0 0 10px 0;
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
}

.resource-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.resource-col li a {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 6px 0;
    font-size: 14px;
}

.resource-col li a:hover {
    color: #0066cc;
}

.resource-menu {
    min-width: 350px;
    padding: 25px;
}

/* Arrow styles */
.arrow {
    display: inline-block;
}

/* Mobile Header */
.mobile-header {
    display: none;
}

.logo-mobile {
    display: none;
}

.toggle {
    display: none;
}

/* Responsive - Mobile */
@media (max-width: 1279px) {
    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 60px;
    }
    
    .logo-mobile {
        display: block;
    }
    
    .logo-mobile a {
        display: block;
    }
    
    .logo-mobile svg {
        height: 25px;
        width: auto;
    }
    
    .toggle {
        display: flex;
        cursor: pointer;
        z-index: 1001;
    }
    
    .toggle a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: #f5f5f5;
        border-radius: 6px;
        text-decoration: none;
    }
    
    .toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: #000;
        margin: 3px 0;
        transition: all 0.3s;
    }
    
    .header-inner {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        padding: 80px 20px 20px;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .header-inner.active {
        display: flex;
    }
    
    .header-left, .header-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .menu > li > a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        font-size: 18px;
    }
    
    .menu-resource {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .menu-resource > li > a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        font-size: 16px;
    }
    
    .login-block {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }
    
    .login-btn {
        width: 100%;
    }
    
    .login-btn a {
        padding: 15px;
        background: #f5f5f5;
        border-radius: 6px;
        justify-content: center;
    }
    
    .get-started-btn {
        width: 100%;
    }
    
    .get-started-btn .primary-button {
        display: block;
        text-align: center;
        padding: 15px;
    }
    
    /* Mobile dropdown menus */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        display: none !important;
    }
    
    .dropdown-menu.active {
        display: block !important;
    }
    
    .feature-menu, .resource-menu {
        transform: none;
        left: auto;
        min-width: auto;
    }
    
    .h-feature-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .h-feature-col {
        margin-bottom: 15px;
    }
    
    .h-feature-col li a {
        padding: 10px 0;
        font-size: 16px;
    }
    
    .resource-col-cover {
        flex-direction: column;
        gap: 20px;
    }
    
    .resource-col li a {
        padding: 10px 0;
        font-size: 16px;
    }
    
    .top-header {
        display: none;
    }
}

@media (max-width: 640px) {
    .top-header-list {
        font-size: 10px;
        gap: 10px;
    }
}
