/* Font Awesome */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");

/* ================= Footer ================= */
footer {
    position: relative; /* stays in natural flow */
    width: 100%;
    background: linear-gradient(to right, #00093c, #2d0b00);
    padding: 100px 0 30px;
    color: #fff;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
    box-sizing: border-box;
}

footer .row {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* evenly space columns */
    align-items: flex-start;
    padding: 0 15px;
    gap: 20px; /* equal spacing between columns */
}

footer .col {
    flex: 1; /* all columns equal width */
    min-width: 220px; /* prevents shrinking too small */
    padding: 10px;
    display: flex;
    flex-direction: column;
}

footer .col h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    width: fit-content;
    position: relative;
}

footer .underline {
    display: block;
    width: 60px;
    height: 4px;
    background: #767676;
    border-radius: 3px;
    margin: 5px 0 20px 0;
    position: relative;
    overflow: hidden;
}

footer .underline span {
    width: 15px;
    height: 100%;
    background: #fff;
    borde
