/* General footer styling */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 200px;
}

.footer-brand {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
}

.footer-toggle-link {
    text-decoration: none; /* Removes the underline */
    color: inherit; /* Uses the same color as the surrounding text */
}

.footer-toggle-link:hover {
    color: #007bff; /* Optional: Change color on hover if desired */
}

/* Mobile view adjustments */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        display: none; /* Hidden by default in mobile view */
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-toggle {
        cursor: pointer;
    }

    .footer-toggle.active + .dropdown-menu {
        display: block;
    }
}

/* Web view adjustments */
@media screen and (min-width: 769px) {
    .dropdown-menu {
        display: block !important; /* Always show dropdowns in web view */
    }
}
