.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero-bg.jpg') center/cover no-repeat;
    color: var(--white);
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

/* Fallback if image not provided */
.hero {
    background-color: var(--primary-dark);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-logo {
    width: 180px;
    height: 180px;
    margin-bottom: 30px;
    background-color: var(--white);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    object-fit: contain;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1.1rem; }
    .hero-btns { flex-direction: column; }
}
