
/* Hero Section UX Improvements */
.banner3-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
}

.banner3-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.banner3-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Improved CTA buttons */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Site-specific hero improvements */
.banner3-datemetrix {
    background-color: rgba(103, 58, 183, 0.95);
}

.banner3-genepool {
    background-color: rgba(0, 150, 136, 0.95);
}

.banner3-wellmatched {
    background-color: rgba(25, 118, 210, 0.95);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .banner3-content {
        padding: 2rem 1rem;
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
    }
}
