/* css/static-page.css */

.static-page-content {
    background-color: var(--secondary-blue); /* Background content */
    padding: 60px 0;
    color: var(--grey-text);
}

.static-page-content h2.section-title {
    margin-bottom: 40px; /* Sesuaikan margin untuk judul di halaman statis */
    color: var(--white);
    font-size: 2.5em;
}

.static-page-content h3 {
    font-size: 1.8em;
    color: var(--light-blue); /* Heading sub-bagian */
    margin-top: 40px;
    margin-bottom: 20px;
}

.static-page-content p {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--grey-text);
}

.static-page-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--grey-text);
}

.static-page-content ol {
    list-style: decimal;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--grey-text);
}

.static-page-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* FAQ Specific Styles */
.faq-item {
    background-color: var(--primary-dark-blue); /* Background FAQ item */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 25px;
    background-color: var(--primary-dark-blue);
    color: var(--white);
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--accent-blue);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    background-color: var(--secondary-blue);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.faq-answer p {
    padding: 15px 0;
    margin-bottom: 0;
}