:root {
    --header-height-desktop: 100px;
    --header-height-mobile: 70px;
    --primary-bg-color: rgba(255, 255, 255, 1);
    --color-text: rgba(0, 0, 0, 1);
    --color-background: rgba(247, 244, 242, 1);
    --transition-default: 0.3s ease
}

.main-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height-desktop);
    background-color: var(--primary-bg-color);
    margin: 0 auto
}

.main-content {
    width: 85%;
    max-width: 1200px;
    padding: 2rem 0;
}

.content-title {
    font-family: 'Plus Jakarta Sans';
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    text-align: start;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--color-text);
    margin-bottom: 6px;
}

.strategy-section {
    margin-bottom: 2rem
}

.strategy-section:last-child {
    margin-bottom: 0
}

.strategy-section .text-sub-heading {
    color: rgba(6, 6, 6, 1);
    font-weight: 600;
}

.strategy-section p {
    color: rgba(132, 134, 138, 1);
    font-family: 'Plus Jakarta Sans';
    font-size: 20px;
    font-weight: 500;
    line-height: 38px;
    text-align: start;
    text-underline-position: from-font;
    text-decoration-skip-ink: none
}

.strategy-section h2 {
    /* margin-bottom: .5rem; */
    color: rgba(132, 134, 138, 1);
    font-family: 'Plus Jakarta Sans';
    font-size: 20px;
    font-weight: 500;
    line-height: 38px;
    text-align: start;
    text-underline-position: from-font;
    text-decoration-skip-ink: none
}

@media screen and (max-width:768px) {
    .main-container {
        padding-top: var(--header-height-mobile)
    }

    .main-content {
        width: 100%;
        padding: 1rem 1.5rem
    }

    .content-title {
        font-family: 'Plus Jakarta Sans';
        font-size: 20px;
        font-weight: 700;
        line-height: 30px;
        text-align: start;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        margin-bottom: 0.5rem
    }

    .strategy-section {
        margin-bottom: 1.5rem
    }

    .strategy-section p {
        margin-bottom: .3rem;
        font-family: 'Plus Jakarta Sans';
        font-size: 14px;
        font-weight: 300;
        line-height: 28px;
        text-align: justify;
        text-underline-position: from-font;
        text-decoration-skip-ink: none
    }
}

@media screen and (max-width:480px) {
    .main-container {
        padding-top: var(--header-height-mobile)
    }

    .main-content {
        width: 100%;
        padding: 1rem 1.5rem
    }

    .strategy-section {
        margin-bottom: 1rem
    }

    .strategy-section p {
        margin-bottom: .3rem;
        font-family: 'Plus Jakarta Sans';
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        text-align: justify;
        text-underline-position: from-font;
        text-decoration-skip-ink: none
    }
}