.qna {
    font-family: "Noto Serif TC", serif;
    margin: 0 auto;
    padding: 40px 0px;
    max-width: 1400px;
    min-height: 760px;
    display: flex;
}

.qna .title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 30px;
}

.qna .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
    color: #4f4f4f;
    background-color: #fff;
    box-shadow: 1px 1px 1px #eee;
    border: none;
}

.qna .accordion .accordion-item .accordion-body {
    font-size: 16px;
    color: #4f4f4f;
}

@media (max-width: 435px) {
    .qna .title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .qna .accordion .accordion-item .accordion-header .accordion-button {
        font-size: 16px;
    }
    
    .qna .accordion .accordion-item .accordion-body {
        font-size: 14px;
    }
}

.term {
    font-family: "Noto Serif TC", serif;
    margin: 40px auto;
    padding: 30px 40px;
    max-width: 1000px;
    min-height: 760px;
    display: flex;
    border: 1px solid #FCFCFC;
    box-shadow: 0px 5px 10px rgba(13,13,13, 0.05);
}

.term .title {
    font-size: 32px;
    color: #2f2f2f;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.term .content {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.term .content .text {
    margin: 0;
    color: #4f4f4f;
    font-size: 16px;
    text-align: justify;
}

.term .content .clause {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.term .content .clause .title {
    margin: 0;
    text-align: left;
    font-size: 24px;
    color: #2f2f2f;
}

.term .content .clause .text {
    margin: 0px;
    text-align: justify;
    font-size: 16px;
    color: #4f4f4f;
    text-indent: 2em;
}

.term .content .clause .inside {
    margin: 0px;
    text-align: justify;
    font-size: 16px;
    color: #4f4f4f;
    text-indent: 4em;
}

@media (max-width: 435px) {
    .term {
        margin: 20px 10px;
        padding: 10px 15px;
    }
    
    .term .title {
        font-size: 24px;
    }
    
    .term .content {
        margin-top: 20px;
        padding: 0 10px;
        gap: 10px;
    }
    
    .term .content .text {
        font-size: 14px;
    }
    
    .term .content .clause {
        gap: 5px;
    }
    
    .term .content .clause .title {
        font-size: 18px;
    }
    
    .term .content .clause .text {
        font-size: 14px;
    }
    
    .term .content .clause .inside {
        font-size: 14px;
    }
}

.about {
    font-family: "Noto Serif TC", serif;
    margin: 40px auto;
    max-width: 1000px;
    min-height: 760px;
    display: flex;
}

.about .about-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about .title {
    font-size: 28px;
    font-weight: 600;
    color: #2f2f2f;
}

.about .intro {
    display: flex;
    flex-direction: row;
    margin: auto;
    width: 100%;
    max-width: 100%;
    gap: 50px;
    margin-top: 20px;
}

.about .intro .content {
    width: 60%;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.about .intro .content .vertical-line {
    width: 1px;
    height: 100px;
    background-color: #808080;
    margin: 0 20px;
    display: block;
}

.about .intro .content .title {
    font-size: 20px;
    font-weight: 600;
    color: #2f2f2f;
}

.about .intro .content .text {
    font-size: 18px;
    color: #4f4f4f;
    text-align: justify;
}

.about .intro .pic1 {
    position: relative;
    width: 40%;
    max-width: 100%;
    overflow: hidden;
}

.about .intro .pic1 img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1400px) {
    .about {
        padding: 30px;
    }
}

@media (max-width: 435px) {
    .about {
        margin-bottom: 15px;
        padding: 0;
    }
    
    .about .title {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 20px;
    }
    
    .about .intro {
        padding: 0px 10px;
    }
    
    .about .intro .content .vertical-line {
        display: none;
    }
    
    .about .intro .content .title {
        font-size: 12px;
    }
    
    .about .intro .content .text {
        font-size: 10px;
    }
}

.about .intro1 {
    align-items: center;
    justify-content: center;
}

.about .intro1 .title {
    font-size: 24px;
    text-align: center;
}

.about .intro1 .content {
    font-size: 18px;
    text-align: center;
}

.about .end {
    align-items: center;
    justify-content: center;
}

.about .end .text {
    text-align: center;
    font-size: 20px;
}

@media (max-width: 435px) {
    .about .intro1 .title {
        font-size: 16px;
    }
    
    .about .intro1 .content {
        font-size: 12px;
    }
    
    .about .end .text {
        font-size: 14px;
    }
}