.hb7-banner-gradient {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #06b6d4 100%);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.hb7-banner-content {
    position: relative;
    z-index: 2;
}

.hb7-banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hb7-banner-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
}

.hb7-banner-tagline {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.hb7-register-btn {
    background: white;
    color: #7c3aed;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.hb7-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #7c3aed;
}

.hb7-banner-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40%;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
}

.hb7-location-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    display: inline-block;
    margin: 0 8px;
}

@media (max-width: 768px) {
    .hb7-banner-title {
        font-size: 1.8rem;
    }
    .hb7-banner-image {
        width: 100%;
        opacity: 0.3;
    }
    .hb7-register-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}