/* Hero Section */
.hero {
    padding: 100px 0 50px 0;
    box-sizing: border-box;
}

.yg-desc-content,
.yg-young-people-content,
.yg-employers-content {
    padding: 50px 0 30px 0;
    
}

.hero-content, 
.yg-desc-content,
.yg-young-people-content,
.yg-employers-content {
    width: 100%;
    max-width: 1000px;
    margin-left: 75px;
}

.yg-desc-content,
.yg-young-people-content,
.yg-employers-content {
    margin: 0 75px;
}

.hero-content p {
    max-width: 800px;
    margin-bottom: 25px;
}

.title {
    color: #222;
    font-size: 48px;
    gap: 0;
    font-weight: 600;
}

ul {
    list-style-position: inside;
}

ul li {
  margin-bottom: 1rem;
}

.hero-content .button {
    padding: 15px 30px;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero Section */
    .hero,
    .yg-desc,
    .yg-young-people,
    .yg-employers {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin: 0 20px; 
        box-sizing: border-box;
    }

    .hero-content, 
    .yg-desc-content,
    .yg-young-people-content,
    .yg-employers-content {
        margin: 0 auto;
        padding: 30px 0;
        text-align: center;
    }

    .title { font-size: 32px; }

    p {
        text-align: center;
    }

    ul {
        padding: 0;
    }

    .highlight {
        text-underline-offset: 8px;
    }
}