/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 50px 0;
    background-color: transparent !important;
    align-items: center;
    justify-content: center;
}

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

.site-logo img {
    height: 40px;
    width: auto;
}

.header-button {
    display: inline-block;
    padding: 10px 40px;
    background-color: #F95035;
    border-radius: 25px;
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.header-button:hover {
    background-color: #dd4530;
    transform: translateY(-2px);
}

@media screen and (max-width: 576px) {
    .site-header {
        padding: 15px 0;
    }

    .site-logo img {
        height: 30px;
    }

    .header-button {
        padding: 6px 15px;
        font-size: 14px;
    }

}