/* Shared Hero Section Styles */
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    max-width: 375px;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero {
        height: 400px;
    }

    .hero-logo {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 300px;
    }

    .hero-logo {
        max-width: 200px;
    }
} 