.footer {
    background-color: #fff;
}

.footer-title {
    color: #1E0B32;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-link {
    color: #4A2264;
    transition: color 0.3s ease;
    font-size: 16px;
    display: inline-block;
}

.footer-link:hover {
    color: #7B2CBF;
}

.footer-contact svg {
    color: #7B2CBF;
}

.social-link {
    color: #4A2264;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.social-link:hover {
    color: #7B2CBF;
    background-color: rgba(123, 44, 191, 0.1);
    transform: translateY(-2px);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .footer-title {
        font-size: 18px;
    }

    .footer-link {
        font-size: 15px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }
}

/* Small Tablet Responsive */
@media (max-width: 768px) {
    .logo_col {
        align-items: center;
        margin-bottom: 2rem;
    }

    .footer-title {
        font-size: 17px;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-links {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-link {
        display: block;
        text-align: center;
        font-size: 14px;
        padding: 0.5rem 0;
    }

    .footer-contact li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .footer {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-link {
        font-size: 13px;
        padding: 0.4rem 0;
    }

    .footer-contact svg {
        width: 18px;
        height: 18px;
    }

    .social-link {
        width: 28px;
        height: 28px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .footer {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .logo_col img {
        width: 160px;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-link {
        font-size: 12px;
        padding: 0.3rem 0;
    }

    .footer-contact li {
        gap: 0.5rem;
    }

    .social-links {
        gap: 0.75rem;
    }
}