.how-to-buy-footer {
    background: rgba(10, 15, 45, 0.95);
    padding: 4rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.support-section {
    text-align: center;
    margin: 0 0 3rem 0;
}

.support-section h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.support-section h3 i {
    color: var(--c2, #39d469);
}

.support-section p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 2rem 0;
    font-size: 1.1rem;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.support-link:hover {
    background: rgba(0, 255, 0, 0.2);
    transform: translateY(-2px);
}

.support-link i {
    color: var(--c2, #39d469);
}

.social-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-section h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 0 0 1.5rem 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--c2, #39d469);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .how-to-buy-footer {
        padding: 3rem 0;
    }

    .support-links {
        flex-direction: column;
    }

    .support-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .support-section h3 {
        font-size: 1.5rem;
    }

    .support-section p {
        font-size: 1rem;
    }

    .social-section h3 {
        font-size: 1.2rem;
    }
} 