#hero {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
}

#hero .content {
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#hero .content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

#hero .content p {
    font-size: 16px;
    line-height: 1.5;
}

#hero .content p span{
    color: var(--yellow);
    font-weight: 500;
    margin-top: 8px;
}

#hero img {
    position: absolute;
    bottom: 0;
    right: -5px;
    z-index: -1;
    flex: 1;
    height: 100%;
    object-fit: cover;
    object-position: center;
}