footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 0 1rem;
}

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

footer .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #007bff; /* Blue for titles */
}

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

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

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

footer .footer-section ul li a:hover {
    color: #007bff; /* Blue on hover */
}

footer .social-links a {
    display: inline-block;
    margin-right: 15px;
    color: #ccc;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: #007bff; /* Blue on hover */
}

footer .footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

footer .footer-section p a {
    color: #ccc;
    text-decoration: none;
}

footer .footer-section p a:hover {
    color: #007bff; /* Blue on hover */
}

footer .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #ccc;
}

@media (max-width: 992px) {
    footer .footer-content {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    footer .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    footer .footer-section {
        width: 100%;
    }
}

@media (max-width: 480px) {
    footer .footer-content {
        gap: 30px;
    }

    footer .social-links a {
        margin-right: 10px;
        font-size: 1.2rem;
    }
}
