/* General footer styling */
footer {
    background-color: black;
    color: #fff;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
}

.footer-col {
    flex-basis: 25%;
    margin-bottom: 20px;
}

.footer-col h3 {
    font-size: 18px;
    color: #ff0054;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #b1b1b1;
    text-decoration: none;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #ff0054;
}

.social-icons {
    display: flex;

}

.social-icons a {
    display: inline-block;
    background-color: #ff0054;
    color: #fff;
    font-size: 22px;
    margin-right: 10px;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;

}


.social-icons a:hover {
    background-color: #ff4c81;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #b1b1b1;
}

/* Responsive styling */
@media (max-width: 768px) {
    .footer-col {
        flex-basis: 45%;
    }
}

@media (max-width: 480px) {
    .footer-col {
        flex-basis: 100%;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
    }

}