.site-footer {
    padding: 25px 20px;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    row-gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
    border-bottom: 1px solid #dee2e6;
}

.footer-section {
    padding: 0;
}

.footer-section-title {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #343a40;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none; /* Hidden by default on mobile */
}

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

.footer-section ul a {
    text-decoration: none;
    color: #6c757d;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: #007bff;
}

/* Accordion styles for mobile */
@media (max-width: 767px) {
    .footer-section-title {
        cursor: pointer;
        padding-bottom: 10px;
        border-bottom: 1px solid #dee2e6;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-section-title::after {
        content: '+';
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }

    .footer-section.active .footer-section-title::after {
        transform: rotate(45deg);
    }

    .footer-section.active ul {
        display: block;
        padding-top: 0px;
    }
}


/* Desktop styles */
@media (min-width: 768px) {
    .footer-section ul {
        display: block; /* Ensure lists are visible on desktop */
    }
}

.site-info {
    text-align: center;
    padding-top: 20px;
    color: #6c757d;
    font-size: 0.9rem;
}