.body-inner{
    padding: 30px 0 60px;
    background: #F5F6FA;
}

.body-content{
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #EBEDF0;
    padding: 30px;
    width: 1320px;
    min-width: 1320px;
    margin: 0 auto;
}

h1.title {
    font-family: "NotoSansTC-Medium";
    font-size: 36px;
    color: #0F1826;
    margin-bottom: 30px;
}

.main-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.accordion {
    margin-bottom: 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F7F8FB;
    padding: 30px;
    cursor: pointer;
    border: 1px solid #EBEDF0;
}

.accordion-header:hover {
    background: #F7F8FB;
}

.accordion-header.active {
    background: #F7F8FB;
    border-bottom: none;
}

.accordion-header .header-left {
    display: flex;
    align-items: center;
    gap: 0px;
}

.accordion-header .icon-box {
    width: 34px;
    height: 34px;
    margin-right: 20px;
    border-radius: 8px;
}

.accordion-header .title-wrap h3 {
    font-family: "NotoSansTC-Medium";
    font-size: 20px;
    color: #1a1a1a;
}

.accordion-header .arrow {
    width: 30px;
    height: 30px;
    background-image: url("/dist/images/product/down.png");
    background-size: 100% 100%;
    border-radius: 50%;
    transition: all 0.3s;
}

.accordion-header.active .arrow {
    background-image: url("/dist/images/product/Up.png");
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content.active {
    max-height: fit-content;
}

.content-grid {
    display: flex;
    justify-content: flex-start;
    padding: 0 30px 30px;
    background-color: #F7F8FB;
}

.cards-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cards-area img{
    width: 520px;
    min-width: 520px;
    height: 508px;
    margin-right: 20px;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    height: 64px;
    margin-bottom: 10px;
    background: linear-gradient( 270deg, rgba(255,255,255,0) 0%, #FFFFFF 100%);
    border-radius: 10px;
    padding-left: 20px;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list .check {
    width: 18px;
    height: 18px;
    margin-right: 20px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #fff;
    flex-shrink: 0;
    margin-top: 1px;
}

.features-list span {
    font-family: "NotoSansTC-Medium";
    font-size: 16px;
    color: #0F1826;
}

@media (max-width: 768px) {

    .page-header,
    .main-content {
        padding: 10px 20px;
    }

    .page-header {
        padding-top: 80px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
}
