:root {
    --footer-bg: #3797E6;
    --footer-text: #FCFCFC;
}

.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Wider columns */
.footer-inner {
    margin: 0 auto;
    padding: 48px 5%; /* reduced padding on sides */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px; /* reduced gap */
}

.footer-heading {
    margin: 0 0 22px 0;
    font-weight: 700;
    font-size: 30px;
    color: var(--footer-text);
}

.footer-text-small {    
    font-size: 16px;    
}

.footer-text {
    font-weight: 300;
    font-size: 24px;
    line-height: 1.4;
    color: var(--footer-text);
}

    .footer-text.block {
        margin: 0 0 22px 0;
    }

.thin {
    font-weight: 200;
}

address {
    font-style: normal;
}

/* Social icons */
.social-list {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-top: 10px;
}

.footer-social {
    color: #FCFCFC;
    font-size: 40px;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

    .footer-social:hover {
        transform: translateY(-2px);
        opacity: 0.9;
    }

/* Bottom stripe */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-bottom-inner {
    padding: 22px 5% 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pin {
    font-size: 24px;
}

/* Adjusted bottom text to visually match */
.footer-bottom-text {
    font-size: 26px; /* slightly smaller to match optical size */
    font-weight: 400;
    color: var(--footer-text);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 20px;
    }

    .footer-heading {
        font-size: 26px;
    }

    .footer-text {
        font-size: 24px;
    }

    .footer-social {
        font-size: 34px;
    }

    .footer-bottom-text {
        font-size: 22px;
    }
}
