:root {
    --color-primary: #092b4e;
    --color-accent: #44a294;
    --color-accent-2: #5baebe;
}

._text-accent {
    color: var(--color-accent);
}

._text-accent-2 {
    color: var(--color-accent-2);
}

footer {
    background-color: #000000;
    color: #ffffff;
    padding: 20px 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-copyright {
    font-size: 14px;
    color: #cccccc;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-links a:hover {
    color: #cccccc;
}

.footer-separator {
    color: #666666;
    margin: 0 5px;
}


/* Desktop view */

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .footer-links {
        justify-content: flex-end;
    }
}


/* Mobile adjustments */

@media (max-width: 767px) {
    .footer-content {
        flex-direction: column;
    }
    .footer-links {
        order: 1;
    }
    .footer-copyright {
        order: 2;
    }
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .footer-separator {
        display: none;
    }
    footer {
        padding: 25px 0;
    }
}