.qrise_footer_block {
    padding: 2rem 0;
    background-color: #fff;
}

.qrise_footer_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.qrise_footer_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.qrise_footer_logo .logo {
    height: 40px;
    width: auto;
}

.qrise_footer_logo .tagline {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.qrise_social_links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.qrise_social_links .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
}

.qrise_social_links .social-link:hover {
    background-color: #e0e0e0;
}

.qrise_social_links .social-link img {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .qrise_footer_content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .qrise_footer_logo {
        align-items: center;
    }
} 