/* Footer styles */
.main-footer {
    background-color: #f8fbff;
    border-top: 1px solid rgba(0, 102, 204, 0.1);
    padding: 0;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 0 0 300px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    color: var(--medium-blue);
}

.footer-brand p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    margin: 0;
}

.footer-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-links-column {
    min-width: 150px;
    margin-bottom: 30px;
}

.footer-links-column h4 {
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    color: var(--medium-dark-blue);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column li {
    margin-bottom: 10px;
}

.footer-links-column a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

.footer-links-column a::before {
    content: "›";
    margin-right: 8px;
    color: var(--medium-blue);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links-column a:hover {
    color: var(--medium-blue);
}

.footer-links-column a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    background-color: #edf5ff;
    padding: 20px 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--medium-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--medium-dark-blue);
    text-decoration: underline;
}

/* Commenting out the generic 'footer' tag styles from footer.css if .main-footer is the primary one from main.css.backup */
/* If main.css.backup also had a generic 'footer' tag style, it should be compared.
   The .main-footer class seems to be the primary styling target.
*/
/*
footer {
    background-color: var(--dark-gray);
    color: var(--light-gray);
    text-align: center;
    padding: 1.5rem 1rem;
    bottom: 0;
    width: 100%;
    box-sizing: border-box; 
}

footer p {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

footer .footer-links { // This conflicts with .footer-links class used above.
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-links li {
    display: inline;
    margin: 0 10px;
}

footer .footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.9rem;
}

footer .footer-links a:hover {
    color: var(--white);
}
*/
