#post-content-article-html .faq-item {
    background-color: #ffffff; /* Lighter blue background */
    border: 1px solid #00a676; /* Green border */
    border-radius: 10px; /* Rounded corners */
    padding: 10px; /* Padding inside each question and answer block */
    margin: 20px 0; /* Top and bottom margin */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Shadow for better visual */
}

#post-content-article-html .faq-question {
    display: flex;
    align-items: center;
    padding: 10px; /* Padding inside question and answer block */
    border-bottom: 1px solid #00a676; /* Border to separate question and answer */
}

#post-content-article-html .faq-answer {
    display: flex;
}

#post-content-article-html .faq-answer p {
    margin: 12px; /* Remove default margin */
}

#post-content-article-html .faq-answer svg {
    margin-top: 10px;
}

#post-content-article-html .faq-answer {
    border-bottom: none; /* No border for the answer section */
}

#post-content-article-html .faq-question:last-child {
    border-bottom: none; /* No border for the last question */
}

#post-content-article-html .faq-icon {
    padding: 10px; /* Space around SVG */
    flex-shrink: 0; /* Prevent SVG from shrinking */
}

#post-content-article-html .faq-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

#post-content-article-html .question-svg {
    width: 40px;
    height: 40px;
    margin-top: 10px;
    padding-right: 10px;
}