/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer {
    background-color: #e74c3c;
    color: #fff;
    padding: 40px 20px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-about,
.footer-contact,
.footer-links {
    flex: 1;
}

.footer-about h3,
.footer-contact h3,
.footer-links h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #fff;
}

.footer-about p,
.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #f0f0f0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.footer-social img:hover {
    filter: brightness(0) invert(1) sepia(1) hue-rotate(200deg) saturate(5);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links-column {
    flex: 1;
}

.footer-links-column h4 {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #fff;
}

.footer-links-column ul {
    list-style: none;
}

.footer-links-column ul li {
    margin-bottom: 5px;
}

.footer-links-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links-column ul li a:hover {
    color: #ff6347;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        text-align: center;
        align-items: center;
    }

    .footer-about {
        flex: unset;
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-social {
        display: flex;
        gap: 15px;
        margin-top: 10px;
        justify-content: center;
        text-align: center;
        align-items: center;
    }
}
