.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0 0;
}

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

.header .logo {
    width: 210px;
    z-index: 900;
}

.header .logo img {
    margin-top: 10px;
    height: 60px;
    transition: all 0.3s ease;
}

.phone-header {
    display: flex;
    gap: 6px;
    align-items: center;
}

.phone-icon {
    width: 20px;
    height: 20px;
}

.phone {
    color: #333;
    transition: all 0.4s ease;
}

.phone:hover {
    color: #2c7be5;
}

@media (max-width: 500px) {
    .header .logo {
        width: 160px;
    }

    .header .logo img {
        height: 40px;
    }
}

@media (max-width: 400px) {
    .phone {
        font-size: 12px;
    }
}
