* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;

}

.footer-main-container {
    display: flex;
    font-weight: bold;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 60px;
    color: #000;
    margin: 0 auto;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
    padding-right: 7rem;
    padding-top: 1rem;
}

.footer-logo img {
    width: 55px;
    height: 35px;
    margin-right: 4px;
}

.footer-logo span {
    font-size: 1.7rem;
    font-weight: bold;
    font-family: "Outfit", sans-serif;
}

.footer-links {
    display: flex;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: 20px;
    margin-top: 25px;
    text-align: center;
}

.footer-title {
    font-family: "Outfit";
    font-weight: 500;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: black;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #7b3fe4;
}

.footer-rights {
    text-align: center;
    width: 100%;
    font-size: 0.8rem;
    color: #000;
    padding: 10px 0;
}

.footer-rights p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-main-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: fit-content;
    }

    .footer-links {
        flex-direction: row;
        gap: 40px;
    }

    .footer-column {
        min-width: auto;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-main-container {
        flex-direction: column;
        align-items: center;
        text-align: left;
        padding: 10px;
    }

    .footer-logo span {
        font-size: 1.5rem;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column ul li a {
        font-size: 0.8rem;
    }
}