.how-to-buy-hero {
    position: relative;
    padding: 4rem 0;
    background-image: url('/assets/site/blog/background-lg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    overflow: hidden;
    margin: 0;
}

.how-to-buy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 15, 45, 0.85),
        rgba(10, 15, 45, 0.95)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem 0;
    line-height: 1.4;
}

.hero-cta {
    margin: 2rem 0 0 0;
}

.cta-button {
    background: var(--c2, #39d469);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(57, 212, 105, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 212, 105, 0.4);
    background: #45e077;
}

@media (max-width: 768px) {
    .how-to-buy-hero {
        padding: 4rem 0;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 576px) {
    .how-to-buy-hero {
        padding: 3rem 0;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
} 