.header {
    background-color: #46515D;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header .container {
    min-height: 125px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.icon-tradepeeker {
    height: 64px !important;
    width: auto;
}

.header h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #DFDFDF;
    font-size: 28px;
    margin: 0;
}

.header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.header nav ul li {
    margin-left: 30px;
}

.header nav ul li a {
    text-decoration: none;
    color: #DFDFDF;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
}

.header nav ul li a:hover {
    color: #198BB0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .header nav ul {
        flex-direction: column;
        margin-top: 15px;
    }

    .header nav ul li {
        margin: 10px 0;
    }
}