.section.intro{
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    margin-top: 160px;
}

.section.intro h1{
    font-size: 48px;
}

.section.intro p{
    font-size: 20px;
}

.section.categories{
    margin: 120px auto;
    width: 100%;
}

.section.categories .card-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.section.categories .card{
    display: flex;
    gap: 16px;
    padding: 16px;
    background-color: #FFF;
    border-radius: 8px;
}

.section.categories .card .card-icon img{
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.section.categories .card-content{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section.categories .card-content h3{
    font-size: 20px;
    line-height: 140%;
}

.section.faq .section-container{
    display: flex;
    gap: 80px;
}

.section.faq .faq-title{
    font-size: 40px;
}

.section.faq .faq-list{
    display: flex;
    flex-direction: column;
    background-color: #FFF;
    flex: 1 1 0;
    border-radius: 12px;
    overflow: hidden;
}

.section.faq .faq-item{
    padding: 20px;
    border-bottom: 1px solid #e6e6e6;
}

.section.faq .faq-item:hover{
    background-color: #f1f1f1;
    cursor: pointer;
}

.section.faq .faq-item:open{
    background-color: #dbdbdb;
}

.section.faq .faq-body{
    padding: 12px;
    color: #404040;
    font-weight: 300;
    line-height: 140%;
}

.highlight{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 48px;
    background-color: #fff;
    margin: 0 48px;
}

.highlight h2{
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 20px;
    width: 100%;
    max-width: 800px;
}

.highlight p{
    width: 100%;
    font-size: 24px;
    text-align: center;
}

.highlight .hlbg{
    width: 240px;
    height: 400px;
    background: center center / contain no-repeat url(/element/hlbg.svg);
    position: absolute;
    right: -20px;
    bottom: -160px;
}



@media (max-width:960px) {
    .section.intro{
        gap: 24px;
        margin-top: 120px;
    }
    .section.intro h1{
        font-size: 36px;
    }

    .section.intro p{
        font-size: 16px;
    }
    .section.categories .card-grid{
        grid-template-columns: repeat(1,1fr);
        gap: 16px;
    }
    .section.categories .card{
        align-items: center;
        border-radius: 4px;
    }
    .section.faq .section-container{
        flex-direction: column;
        gap: 24px;
    }   
    .section.faq .faq-title{
        font-size: 28px;
    }
    .section.faq .faq-list{
        flex: none;
    }
    .highlight h2{
        font-size: 28px;
        margin-bottom: 20px;
        max-width: 640px;
    }
    .highlight p{
        font-size: 18px;
    }
    .highlight .hlbg{
        width: 200px;
        height: 360px;
    }
}

@media (max-width:540px) {

    .highlight{
        width: 100%;
        padding: 24px;
        margin: 0 24px;
    }
    .highlight h2{
        font-size: 20px;
        margin-bottom: 20px;
        max-width: 640px;
    }
    .highlight p{
        font-size: 16px;
    }
    .highlight .hlbg{
        width: 200px;
        height: 360px;
    }
}