.site-footer {
    font-family: inherit;
}

.footer-top {
    padding: 40px 0;
    background-color: #f8f8f8;
}

.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    max-width: 250px;
    height: auto;
}

.footer-logo .logo-text {
    font-size: 32px;
    font-weight: bold;
    color: #323232;
}

.footer-menu-column {
    display: flex;
    flex-direction: column;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #9C7B98;
}

.footer-bottom {
    padding: 20px 0;
    background-color: #9C7B98;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pb-130 {
    padding-bottom: 130px !important;
}

.payment-logos {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-logos img {
    height: 32px;
    width: auto;
}

.copyright p {
    color: white;
    font-size: 14px;
    margin: 0;
}

@media(min-width: 950px) {
    .footer-widgets {
        align-items: flex-end !important;
    }
}

@media (max-width: 768px) {
    .footer-widgets {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .payment-logos {
        justify-content: center;
        flex-wrap: wrap;
    }
}