/* start: Global */
.section-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}
.section-description {
    line-height: 1.5;
    font-size: 20px;
    color: var(--gray-600);
}
/* end: Global */



/* start: Hero */
header {
    padding: 48px 0;
    background-color: var(--gray-900);
}
.hero-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--white);
}
.hero-description {
    font-size: 18px;
    text-align: center;
    color: var(--gray-400);
    line-height: 1.5;
    width: 70%;
    margin: auto;
}
/* end: Hero */



/* start: Content */
.content-section {
    padding: 48px 0;
}
.content-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    margin-top: 32px;
}
.content-section p {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.5;
}
.content-list {
    list-style-position: inside;
    margin-bottom: 24px;
}
.content-list > li {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 6px;
}
/* end: Content */



/* start: CTA */
.cta-section {
    padding: 48px 0;
    background-color: var(--gray-900);
}
.cta-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
}
/* end: CTA */



/* start: Breakpoints */
@media screen and (max-width: 767px) {
    .section-title {
        font-size: 26px;
    }
    .section-description {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    .hero-description {
        font-size: 18px;
    }

    .content-title {
        font-size: 20px;
    }
    .content-section p {
        font-size: 16px;
    }
    .content-list > li {
        font-size: 16px;
    }
    .hero-description {
        width: 100%;
    }
}
/* start: Breakpoints */