.hero {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    padding: 2rem;
    min-height: 70vh;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-left h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.btn-primary {
    background: var(--yellow);
    color: var(--dark-bg);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
}

.hero-center img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-radius: 10px;
}

.hero-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.top-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.bottom-grid {
    background: var(--yellow);
    color: var(--dark-bg);
    width: 100%;
    height: 70%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    border-radius: 10px;
}

.btn-dark {
    background: var(--dark-bg);
    color: var(--yellow);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
} 