main article section h2{
    text-align: center;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}
main article section h2::before{
    content: "";
    background-image: url(../images/h2_bg.svg);
    width: 45px;
    height: 28px;
    background-size: cover;
    margin: 0 auto;
}
@media (max-width: 960px) {
    main article section h2{
        font-size: 1.3rem;
    }
    main article section h2::before{
        width: 30px;
        height: 18px;
    }
}
main article section:first-of-type > div:first-of-type{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}
main article section:first-of-type > div:first-of-type p{
    margin-bottom: 2rem;
    text-indent: 1rem;
    text-align: justify;
}
main article section > div table{
    width: 100%;
    border-collapse: collapse;
}
main article section > div table caption{
    text-align: left;
}
main article section > div table th,
main article section > div table td{
    border: 1px solid rgba(30,58,76,1);
    padding: 1rem;
}
main article section > div table th{
    text-align: left;
    font-weight: normal;
    white-space: nowrap;
}
main article section > div:last-of-type{
    background: rgba(251,249,240,1);
    padding: 2rem 0;
}
main article section > div:last-of-type > dl{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
main article section > div:last-of-type > dl dt{
    color: rgba(22,156,88,1);
    font-size: 1.2rem;
}
main article section > div:last-of-type > dl dt span{
    font-size: 1rem;
}
main article section > div:last-of-type > dl dd{
    margin-bottom: 2rem;
    text-indent: 1rem;
    padding-left: 1.3rem;
    text-align: justify;
}
main article section > div:last-of-type > dl dd:last-of-type{
    margin-bottom: 0;
}
@media (max-width: 960px) {
    main article section:first-of-type > div:first-of-type{
        grid-template-columns: 1fr;
    }
    main article section:first-of-type > div:first-of-type figure{
        grid-row: 2;
    }
    main article section:first-of-type > div:first-of-type div{
        grid-row: 1;
    }
    main article section > div table caption{
        margin-bottom: .5rem;
    }
    main article section > div table th,
    main article section > div table td{
        width: 100%;
        display: block;
        border: none;
        padding: .5rem 1rem;
    }
    main article section > div table th{
        background: rgba(30,58,76,.2);
    }
    main article section > div:last-of-type > dl dd{
        padding-left: 0;
    }
}


main article section:last-of-type{
    padding: 4rem 0;
}
main article section:last-of-type h2 + p{
    text-align: center;
    margin: -2.5rem auto 4rem;
}
main article section:last-of-type > div:first-of-type{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}
main article section:last-of-type > div h3{
    color: rgba(22,156,88,1);
    font-size: 1.4rem;
    margin-bottom: .5rem;
}
main article section:last-of-type > div p{
    text-indent: 1rem;
    text-align: justify;
}
main article section:last-of-type > div:nth-of-type(2){
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}
main article section:last-of-type > div:nth-of-type(2) p + p{
    text-indent: 0;
    margin: 1rem auto 2rem;
}
@media (max-width: 960px) {
    main article section:last-of-type > div:first-of-type,
    main article section:last-of-type > div:nth-of-type(2){
        grid-template-columns: 1fr;
    }
    main article section:last-of-type > div figure{
        grid-row: 2;
    }
    main article section:last-of-type > div div{
        grid-row: 1;
    }
    main article section:last-of-type > div h3{
        font-size: 1.2rem;
    }
}