/* Hero Banner Styles */
.hero-banner {
    background-color: #3a7b89;
    color: white;
    padding: 4rem 0;
    width: 100%;
    margin-bottom: 2rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

.hero-content {
    flex: 0 0 60%;
    padding-right: 2rem;
}

.hero-image-space {
    flex: 0 0 40%;
    min-height: 300px;
    background-image: url('/common/img/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 600px;
    color: white;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }
    
    .hero-content {
        flex: 0 0 100%;
        padding-right: 0;
        text-align: center;
    }
    
    .hero-image-space {
        flex: 0 0 100%;
        margin-top: 2rem;
    }
}