/* Footer Styles */
footer {
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.footer-content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 2rem;
    align-items: flex-start;
    box-sizing: border-box;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-warning {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (min-width: 768px) {
    footer {
        padding: 2rem;
        margin-top: 4rem;
    }

    .footer-section {
        padding: 1rem;
        flex: 1;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section ul li a {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .footer-section {
        padding: 0.5rem;
        width: 100%;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-section ul li a {
        font-size: 1rem;
    }

    .footer-warning {
        font-size: 0.8rem;
        margin-top: 1.5rem;
        padding-top: 0.75rem;
    }
}