.site-footer {
    background: #000;
    color: #fff;
    font-family: Inter;
    padding: 24px;
    text-align: center;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-about {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.footer-title {
    font-family: Inter, Sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #fff;
}

.footer-contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.footer-contacts a {
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 3px;
    text-transform: uppercase;
}

.footer-contacts a:first-child {
    color: #000;
    background-color: #fff;
}

.footer-contacts a:last-child {
    background-color: #fb3e37;
    color: #fff;
}

.footer-photo {
    max-width: 800px;
    max-height: 200px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.footer-photo img {
    max-width: 800px;
    max-height: 200px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
    
@media (min-width: 768px) and (max-width: 1279px) {
    .footer-photo {
        max-width: 50%;
        max-height: 150px;
    }
}

.footer-copyright-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 14px 80px;
    border-top: 1px solid #343434;
    background: #000;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 59%;
    width: 100%;
    gap: 8px;
}

.footer-copyright-text {
    color: #FFF;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.745px;
}

.footer-copyright-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    padding-left: 12px;
    border-radius: 56px;
    border: 1px solid #343434;
    transition: all 0.2s ease-in-out;
}

.footer-copyright-logo:hover {
    box-shadow: inset 0 0 2px 1px #a0a0a0;
}

.footer-copyright-logo:hover .footer-copyright-logo-icon svg {
    transform: rotateZ(360deg);
}

.footer-copyright-logo-icon {
    display: flex;
    border-radius: 15px;
    background: #FFF;
    padding: 4px;
}

.footer-copyright-logo-icon svg {
    transition: all 0.2s ease-in-out;
}

.footer-copyright-logo-text {
    color: #F5F5F5;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.745px;
}

.footer-copyright-logo-text span {
    font-weight: 700;
}

.footer-privacy-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-privacy-link:hover {
    color: #ffffff;
}

@media (max-width: 767px) {
    .site-footer {
        padding: 16px 12px;
    }
    .footer-inner {
        flex-direction: column;
        gap: 24px;
    }
    .footer-title {
        font-size: 8.4vw;
    }
    .footer-contacts {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .footer-contacts a {
        width: 50%;
    }
    .footer-copyright {
        max-width: 100%;
    }
    .footer-copyright-container {
        padding: 12px 20px;
    }
}