/* 基本重置和字体 */
body {
    box-sizing: border-box;
}


.logo-text {
    color: #28a745 !important; /* Green color for the logo */
    font-weight: bold;
    font-size: 1.5em !important; /* Ensure size consistency */
}


.feature-detailed-item ul {
    list-style: disc;
    margin-left: 20px; 
}

.feature-detailed-item ul li {
    margin-bottom: 8px;
}


.showcase-detailed-item .tags span {
    /* display: inline-block; */
    background-color: #e9ecef; /* Or use Bootstrap bg-light */
    color: #495057;
    padding: .25rem .5rem; /* Use Bootstrap padding utilities if preferred */
    border-radius: 50rem; /* Bootstrap rounded-pill */
    font-size: 0.8em;
    margin-right: .5rem; /* Bootstrap me-2 */
    margin-bottom: .5rem; /* Bootstrap mb-2 */
}

.requirement-card ul {
    list-style: none; /* Bootstrap might reset this, or keep if needed */
    padding-left: 0;
}
*/

.faq-item {
    margin-bottom: 1rem; 
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left; /* Bootstrap text-start */
    padding: 1rem 0; /* Bootstrap py-3 or similar */
    font-size: 1.15em;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.faq-question:hover {
    color: #007bff; /* Bootstrap text-primary */
}

.faq-toggle {
    font-size: 1.4em;
    font-weight: bold;
    transition: transform 0.2s ease-in-out;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding: 0 1rem; /* Bootstrap px-3 or similar */
    /* font-size: 1em; */
    /* color: #555; */
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 1rem; /* Bootstrap mb-3 */
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Adjust as needed */
    padding: .5rem 1rem 1rem; /* Bootstrap p*-* utilities */
}
