/* Footer */
.footer {
    background: linear-gradient(135deg, #000 0%, #373737 100%);
    color: white;
    padding: 4vh 3vw 2vh;
    width: 100%;
    position: relative;
    z-index: 0;
}

.footer-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;
    align-items: start;
}

.footer-left h3 {
    font-size: 4vh;
    font-weight: bold;
    color: #e53e3e;
    margin-bottom: 1.5vh;
}

.footer-left p {
    color: #cbd5e0;
    font-size: 2vh;
    line-height: 1.8;
    margin-bottom: 1vh;
}

.footer-right h3 {
    font-size: 4vh;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5vh;
}

.footer-contact {
    color: #cbd5e0;
    line-height: 1.8;
    font-size: 2vh;
}

.footer-contact strong {
    color: #e53e3e;
    display: block;
    margin-top: 1vh;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 2vh 0;
}

.footer-bottom {
    text-align: center;
    color: #cbd5e0;
    font-size: 1.5vh;
}

@media (max-width: 768px) {
    .footer-container, .footer-divider{
        display: none;
    }
}