/* Footer styles matching provided design */
.block__footer {
    background-color: #0f0f0f;
    color: #fff;
    background-image: url('/assets/images/pattern-news.png');
    background-repeat: repeat;
}

.footer__info {
    padding: 40px 0;
}

.footer__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between
}

.footer__left {
    flex: 0.7;
}

.footer__left img {
    max-width: 100%;
    height: auto;
}

.footer__socials {
    margin-top: 12px;
}

.footer__socials .social__icon {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    opacity: 0.95;
}

.footer__center {
    flex: 1;
    color: #e6e6e6;
}

.footer__center .footer__title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.company__content p {
    margin: 6px 0;
    color: #d6d6d6;
    line-height: 1.6;
}

.footer__right {
    flex: 0.5;
    text-align: right;
}

.footer__actions .btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    width: 100%;
    margin-bottom: 1rem;
}

.btn-outline {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: #e3182e;
    color: #fff;
    border: 2px solid #e3182e;
}

.footer__map iframe {
    width: 100% !important;
    height: 220px;
    border: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__left,
    .footer__right {
        text-align: center;
    }

    .footer__actions .btn {
        margin: 8px 6px 0 6px;
    }

    .footer__map iframe {
        height: 200px;
    }
}