/* Footer Section */
.footer-section {
    background: #08202A;
    padding: 60px 0 30px 0;
    position: relative;
    margin-top: -2px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Left */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 28px;
    width: auto;
}

.footer-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-family: 'Formular', sans-serif;
    line-height: 1.6;
}

.footer-address p {
    margin: 0;
}

/* Footer Right */
.footer-right {
    display: flex;
    align-items: center;
}

.footer-contact-button {
    background-color: #F28B50;
    color: #08202A;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Formular', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-button:hover {
    background-color: #ff9b5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(242, 139, 80, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-family: 'Formular', sans-serif;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-logo-img {
        height: 24px;
    }
    
    .footer-contact-button {
        font-size: 13px;
        padding: 10px 20px;
    }
}