* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
    width: 100%;
    overflow-x: hidden;
}

/* Title Section */

.text-title-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 80px;
}

.text-title-section > h1 {
    color: black;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 100%; /* 80px */
    letter-spacing: -1.6px;
    margin-top: 8px;
    max-width: 872px;
}

.text-content-container {
    font-family: "Montserrat", sans-serif;
    max-width: 872px;
    margin: 0 auto;
    padding: 0 0 120px 0;
}

.text-content-container > p {
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}

.text-content-container > p > span {
    font-weight: 600;
}

.text-content-container > h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 16px;
}

.text-content-container > h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 8px;
}

.text-content-container > h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 8px;
}

.text-content-container > h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 8px;
}

.text-content-container > ul {
    padding-left: 16px;
}

.text-content-container > ol {
    padding-left: 16px;
}

.text-content-container > ul > li {
    font-size: 14px;
    font-weight: 500;
    line-height: 160%;
    padding: 2px 0;
}

.text-content-container > ol > li {
    font-size: 14px;
    font-weight: 500;
    line-height: 160%;
    padding: 2px 0;
}

@media only screen and (max-width: 960px) {


    .text-title-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px;
    }

    .text-title-section > h1 {
        text-align: left;
        font-size: 40px;
        max-width: unset;
    }

    .text-content-container {
        font-family: "Montserrat", sans-serif;
        max-width: 872px;
        margin: unset;
        padding: 0 24px 120px 24px;
    }

    .text-content-container > h2 {
        font-size: 32px;
    }
    .text-content-container > h3 {
        font-size: 24px;
    }
    .text-content-container > h4 {
        font-size: 20px;
    }
    
}