﻿/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 2rem 0.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /*grid-template-columns: 1fr 1.5fr 1fr 1fr;*/
    gap: 2rem;
    /*margin-bottom: 2rem;*/
}
/* Desktop */
@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1.5fr 1fr 1fr;
    }
}

/* Tablet */
@media (max-width: 1023px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}
.footer-section h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-weight: 500 !important;
    font-size: 1.1rem !important;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #0066cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 0rem;
    border-top: 1px solid #333;
    color: #999;
}
    .footer-bottom p {
        margin-bottom: 0rem !important;
    }
.footer-section ul{
    padding-left: 0rem !important;
}
