.custom-site-footer {
    background-color: #1a1a2e;
    color: #cfcfe0;
    padding: 55px 20px 0;
    font-family: inherit;
}

.custom-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    color: #ffffff;
    font-size: 20px;
    margin: 0 0 12px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #a5a5c0;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #cfcfe0;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    margin-right: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
    background: #6f42c1;
    color: #ffffff;
}

.footer-heading {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 18px;
    letter-spacing: 0.3px;
}

.custom-footer-inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-footer-inner li {
    margin-bottom: 12px;
}

.custom-footer-inner a {
    color: #a5a5c0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.custom-footer-inner a:hover {
    color: #a78bfa;
}

.footer-cta {
    margin-top: 20px;
    font-size: 14px;
    color: #cfcfe0;
}

.footer-cta a {
    color: #a78bfa;
    font-weight: 600;
}

.custom-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #8a8aa5;
}

.custom-footer-bottom a {
    color: #a78bfa;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .custom-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .custom-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social {
        display: flex;
        justify-content: center;
    }
}

  /* Start footer logo css */
/*.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}*/

.footer-logo-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /*gap: 2px;*/
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 28px;
    width: auto;
    border-radius: 50%;
}

.footer-logo-row .footer-logo {
    margin: 0;
    gap: 0;
}

  /* End footer logo css */