/* Header */
.v4-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 14px 100px;
    background: transparent;
}

.v4-header-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 1240px;
    margin: 0 auto;
    background: transparent;
}

.v4-logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

.v4-logo img {
    width: 60px !important;
    height: 60px !important;
    display: block !important;
}

.v4-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 107px !important;
    background: transparent;
    flex-shrink: 0 !important;
}

.v4-nav a {
    font-size: 18px;
    font-weight: normal;
    color: #333;
    text-decoration: none;
}

.v4-nav a:hover {
    color: #ff5930 !important;
}

/* Footer */
.v4-footer {
    padding: 37px 100px 100px;
    max-width: 1440px;
    margin: 0 auto;
    border-top: 1px solid #e5e5e5;
    background-color: #fff;
    text-transform: none;
    text-align: left;
    color: #333;
}

.v4-footer-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.v4-footer-left {
    display: flex;
    flex-direction: column;
    width: 334px;
}

.v4-footer-logo {
    width: 100px;
    height: 100px;
    margin-left: -12px;
    margin-bottom: -3.5px;
    display: block;
}

.v4-social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 85px;
}

.v4-social-links a {
    display: inline-block;
}

.v4-social-links img {
    width: 20px;
    height: 20px;
    display: block;
}

.v4-copyright {
    font-size: 16px;
    color: #000;
    line-height: 18px;
}

.v4-footer-middle {
    display: flex;
    gap: 176px;
    margin-top: 99.5px;
    margin-left: 0;
    flex-grow: 1;
}

.v4-link-col {
    display: flex;
    flex-direction: column;
    gap: 33px;
}

.v4-link-col a {
    font-size: 16px;
    color: #333;
    line-height: 18px;
    display: block;
    text-decoration: none;
}

.v4-link-col a:hover {
    color: #ff5930 !important;
}

.v4-footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 97px;
}

.v4-footer-qr {
    width: 90px;
    height: 90px;
}

.v4-footer-qr > svg,
.v4-footer-qr > canvas {
    width: 100% !important;
    height: 100% !important;
}

.v4-footer-right span {
    font-size: 14px;
    color: #333;
    line-height: normal;
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .v4-header {
        padding: 14px 50px;
    }
    .v4-footer {
        padding: 37px 50px 100px;
    }
}

@media screen and (max-width: 768px) {
    .v4-header {
        padding: 14px 20px;
    }
    .v4-footer {
        padding: 37px 20px 50px;
    }
    .v4-nav {
        display: none;
    }
    
    .v4-footer-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .v4-footer-middle {
        margin-top: 0;
        margin-left: 0;
        gap: 50px;
        flex-direction: column;
    }
    
    .v4-footer-right {
        margin-top: 0;
        align-items: flex-start;
    }
}