footer {
    background: #0f2a44;
    color: white;
    margin-top: 5rem;
}

.footer-top {
    display: flex;
    justify-content: center;
    gap: 6rem;
    padding: 4rem 0;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 ;
    max-width: 350px;
    position: relative;
}

.footer-column:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.1);
}

.footer-column h3 {
    color: #d4af37;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.footer-column p {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
}

.footer-column strong {
    font-weight: 600;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 1.2rem;
    background: #0b1d30;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

@media(max-width: 992px){

    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        text-align: center;
    }

    .footer-column {
        max-width: 100%;
    }

    .footer-column::after {
        display: none;
    }
}