.migration-collective-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 5%;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.hero-content {
    max-width: 700px;
    text-align: left;
}

.hero-headline {
    font-family: 'Roboto Slab', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero-subheadline {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
    font-style: italic;
}

.hero-body {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.hero-btn-primary {
    background-color: #cc5500; /* Terracotta */
    color: #ffffff;
    border: 2px solid #cc5500;
}

.hero-btn-primary:hover {
    background-color: #a34400;
    border-color: #a34400;
}

.hero-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    .hero-subheadline {
        font-size: 1.4rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .hero-btn {
        text-align: center;
    }
}
