:root {
    --main: #5B7CFA;
    --sub: #7F5AF0;
    --dark: #111827;
    --gray: #6B7280;
    --light: #F8FAFC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans TC",sans-serif;
    line-height: 1.8;
    color: var(--dark);
    background: #fff;
}
.blog-category-overview {
    position: relative;
    overflow: hidden;
}
.category-description {
    max-width: 760px;
    line-height: 1.9;
    font-size: 1.05rem;
    color: #333;
    text-align: justify;
}
.category-card .card {
    border-radius: 24px;
    transition: all .35s ease;
    overflow: hidden;
    background: #fff;
}
.category-card:hover .card {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08) !important;
}
.category-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.category-card h3 {
    line-height: 1.5;
}
.category-card p {
    line-height: 1.9;
    font-size: .98rem;
    min-height: 120px;
}
.category-card .card-body {
    display: flex;
    flex-direction: column;
}
    .category-card .card-body p {
        max-width: 760px;
        color: #333;
        line-height: 1.9;
        font-size: 1.05rem;
        text-align: justify;
    }
.category-card .d-flex {
    margin-top: auto;
}
.section-title {
    text-align: center;
    margin-bottom: 70px;
}
    .section-title h2 {
        font-size: 40px;
        margin-bottom: 15px;
    }
    .section-title p {
        color: #333;
    }
.faq {
    max-width: 900px;
    margin: auto;
}
.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 25px 0;
}
    .faq-item h3 {
        margin-bottom: 12px;
    }
    .faq-item p {
        color: #6b5280;
        line-height: 1.9;
        margin-bottom: 0;
        text-align: justify;
        text-justify: inter-word;
    }
.small-font {
    font-size: 12px;
    color: #888;
}

@media (max-width: 992px) {
    .category-card p {
        min-height: auto;
    }
    .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .section-title p{
        text-align: justify;
    }
    .blog-category-overview {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }
    .category-icon {
        width: 68px;
        height: 68px;
        font-size: 1.7rem;
        border-radius: 18px;
    }
    .category-card .card-body {
        padding: 2rem !important;
    }
    .faq-item p {
        text-align: justify;
        text-justify: inter-word;
    }

}

@media (max-width: 576px) {
    .category-description {
        font-size: .98rem;
    }
    .category-card .card {
        border-radius: 20px;
    }
}
