.hero {
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 1) 100%),
        url('../images/Back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: black;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 20px;
    height: 100vh;
}

.hero-content {
    max-width: 600px;
    margin-left: 5%;
}

.hero-content .subtitle {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9em;
    margin-bottom: 1em;
    color: var(--accent);
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

.hero-content .tagline {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

.cta-btn {
    background: var(--accent);
    color: black;
    padding: 0.8em 1.5em;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #e0a800;
}

@media (max-width: 768px) {
    .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    justify-content: center;
    }

    .hero-content {
    margin-left: 0;
    }
}