/* ===== FOOTER STYLES ===== */

.footer {
    background: #bfbcbc;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #000000;
    font-weight: bold;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

/* Resources Section */
.resources-section ul li a {
    color: #333;
}

/* CLP Mission Section */
.mission-section {
    text-align: left;
}

.mission-section p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.mission-section h4 {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #000000;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ec1e2c;
    transform: scale(1.2);
}

/* Legal Info */
.legal-info {
    margin-top: 2rem;
}

.legal-info h4 {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.legal-info p {
    color: #333;
    font-size: 0.9rem;
}

/* Quick Links Section */
.quick-links-section ul li a {
    color: #333;
}

/* Contact Info */
.contact-info {
    margin-top: 2rem;
}

.contact-info h4 {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.contact-info p {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #ec1e2c;
    text-decoration: none;
}

.contact-info a:hover {
    color: #000000;
    text-decoration: underline;
}

/* Mailing Address */
.mailing-address {
    margin-top: 2rem;
}

.mailing-address h4 {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.mailing-address p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #afabab;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #333;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .social-links {
        justify-content: center;
    }
}
