.buyer-hero-bf8f6327 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.buyer-hero-bf8f6327-main {
    background-color: #001f3f; /* Navy default */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.buyer-hero-bf8f6327-content {
    max-width: 800px;
    margin: 0 auto;
}

.buyer-hero-bf8f6327-overline {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #a0aec0;
    font-weight: 600;
}

.buyer-hero-bf8f6327-headline {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    line-height: 1.2;
}

.buyer-hero-bf8f6327-desc {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #e2e8f0;
}

.buyer-hero-bf8f6327-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.buyer-hero-bf8f6327-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.buyer-hero-bf8f6327-btn-primary {
    background-color: #FFBF00; /* Amber default */
    color: #000000;
}

.buyer-hero-bf8f6327-btn-primary:hover {
    opacity: 0.9;
    color: #000000;
}

.buyer-hero-bf8f6327-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.buyer-hero-bf8f6327-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.buyer-hero-bf8f6327-stats-strip {
    background-color: #ffffff;
    padding: 40px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.buyer-hero-bf8f6327-stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.buyer-hero-bf8f6327-stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.buyer-hero-bf8f6327-stat-label {
    font-size: 14px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.buyer-hero-bf8f6327-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}

@media (max-width: 768px) {
    .buyer-hero-bf8f6327-headline {
        font-size: 32px;
    }
    
    .buyer-hero-bf8f6327-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .buyer-hero-bf8f6327-actions {
        flex-direction: column;
    }
    
    .buyer-hero-bf8f6327-stats-grid {
        grid-template-columns: 1fr;
    }
}