footer {
    background-color: #003247;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: 0.5rem solid #335e6f;
    height: var(--footer-height, 16%);
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between; /* Align left and right sections */
    align-items: center;
    width: 100%; /* Ensure content spans the full footer width */
}

.footer-words {
    display: flex;
    align-items: center;
    gap: 10px; /* Optional: Space between text */
}

.footer-links {
    display: flex;
    align-items: center;
    margin-right: 15px; /* Optional: Space between text */
}

.footer-links a {
    text-decoration: underline;
    color: inherit;
}