.footer-container {
    /* background-color: #980000; */
    color: white;
    /* padding: 40px 100px; */
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 20fr;
    gap: 20px;
}

.logo-section {
    flex-shrink: 0;
    margin-right: 3vw;
    min-width: 135px;
}

.footer-divider {
    width: 1px;
    background-color: white;
    height: 100%;
    opacity: 1;
    flex-shrink: 0;
}
/* 
.column-title-container {
    margin-bottom: 10px;
} */

.footer-content-wrapper {
    display: flex;
    gap: 20px;
}

.links-section {
    display: flex;
    gap: 80px;
    flex: 1;
    align-items: flex-start;
}

.links-column {
    display: flex;
    flex-direction: column;
}

.links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.column-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-link:hover {
    text-decoration: underline;
}

.contact-section {
    text-align: right;
    flex-shrink: 0;
    /* min-width: 250px; */
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 4px;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* .social-icon svg {
    width: 20px;
    height: 20px;
    fill: #b83c3c;
} */

.copyright-section {
    text-align: center;
    padding: 14px;
    background-color: #231f20;
    color: white;
    font-size: 14px;
}

.copyright-section p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 981px) {
    .footer {
        flex-direction: column;
        gap: 30px;
        /* text-align: center; */
    }

    .footer-container {
        display: flex;
        flex-flow: column;
    }

    .footer-divider {
        display: none;
    }

    .links-section {
        flex-direction: column;
        gap: 30px;
    }

    .contact-section {
        text-align: right;
    }

    .social-icons {
        justify-content: left;
    }
}

@media (max-width: 480px) {
    .footer-container {
        display: block;
    }

    .footer-container .logo-image {
        width: auto;
        height: auto;
        margin-left: 0;
    }

    .links-section {
        gap: 20px;
    }

    .links-wrapper {
        display: block;
    }

    .logo-image {
        width: 45vw;
        height: 10vh;
        margin-left: 6vw;
    }
}
