.fc-public-footer {
        border-top: 1px solid #e2e8f0;
        background: rgba(255, 255, 255, 0.68);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .fc-public-footer-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 46px 24px;
        display: grid;
        grid-template-columns: minmax(0, 2fr) minmax(150px, 1fr) minmax(150px, 1fr) minmax(170px, auto);
        gap: 36px;
        align-items: start;
    }

    .fc-footer-title {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 18px;
        font-weight: 900;
        color: #111827;
        margin-bottom: 12px;
    }

    .fc-footer-text,
    .fc-footer-link {
        color: #64748b;
        font-size: 14px;
        line-height: 1.8;
    }

    .fc-footer-link {
        text-decoration: none;
    }

    .fc-cookie-settings-link {
        width: fit-content;
        margin: 0;
        padding: 0;
        border: 0;
        background: transparent;
        font: inherit;
        text-align: left;
        cursor: pointer;
    }

    .fc-footer-link:hover {
        color: #005bb2;
    }

    .fc-footer-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .fc-footer-social {
        justify-self: end;
        text-align: right;
    }

    .fc-footer-social-text {
        margin: 0 0 14px;
        color: #64748b;
        font-size: 14px;
        line-height: 1.6;
    }

    .fc-footer-social-buttons {
        display: flex;
        justify-content: flex-end;
        gap: 12px;
    }

    .fc-social-btn {
        width: 48px;
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        text-decoration: none;
        background: rgba(241, 245, 249, 0.95);
        border: 1px solid rgba(226, 232, 240, 0.95);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
        transition: 0.2s ease;
    }

    .fc-social-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 36px rgba(15, 23, 42, 0.13);
    }

    .fc-social-btn svg {
        width: 25px;
        height: 25px;
        display: block;
    }

    .fc-social-whatsapp {
        background: #25D366;
        border-color: #25D366;
    }

    .fc-social-telegram {
        background: #229ED9;
        border-color: #229ED9;
    }

    .fc-social-whatsapp svg,
    .fc-social-telegram svg {
        fill: #ffffff;
    }

    @media (max-width: 900px) {
        .fc-public-footer-inner {
            grid-template-columns: 1fr;
            padding-bottom: 200px;
        }

        .fc-footer-social {
            justify-self: start;
            text-align: left;
        }

        .fc-footer-social-buttons {
            justify-content: flex-start;
        }
    }
