.hero-banner {
    background-color: #441014;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.14'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: var(--primary-color);
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    margin-top: 100px;
    z-index: 10;
}
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
}
.hero-content {
    position: relative;
    z-index: 100;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}
.hero-content h1 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero-content p {
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.5;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .hero-content {
        max-width: 500px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
}
@media (max-width: 576px) {
    .hero-banner {
        margin-top: 70px;
    }
    .hero-content {
        padding: 0 1.5rem;
    }
    .hero-content h1 {
        font-size: 2.1rem;
    }
    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}