/* Hero Section - Promotional Banner Style */
.hero-banner {
    background: linear-gradient(135deg, #fff5f0 0%, #f0f8ff 100%);
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Hero Text Content */
.hero-content {
    position: relative;
    z-index: 0;
}

.glow-alert {
    background: #c8a882;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a4a4a;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Arial Black', sans-serif;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 100%;
}

.hero-cta-button {
    background: #1a4a4a;
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(26, 74, 74, 0.3);
}

.hero-cta-button:hover {
    background: #0f3333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 74, 74, 0.4);
}

.hero-disclaimer {
    font-size: 0.9rem;
    color: #999;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Hero Products Image */
.hero-products {
    position: relative;
    text-align: center;
}

.hero-products-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        max-width: none;
    }
}
