/* body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f7fc;
    color: #1e2a3e;
    line-height: 1.5;
} */

/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
} */

.page-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.page-title h2 {
    font-size: 2.2rem;
    color: #0b5e7e;
    border-bottom: 3px solid #ff8c42;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.page-title p {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.cat-btn {
    background: #e0e7ef;
    border: none;
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #1e2a3e;
}

.cat-btn.active,
.cat-btn:hover {
    background: #ff8c42;
    color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.faq-section {
    display: none;
}

.faq-section.active-section {
    display: block;
}

.faq-item {
    background: white;
    border-radius: 14px;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    background: white;
    padding: 1.2rem 1.8rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0b5e7e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid #ff8c42;
}

.faq-question:hover {
    background: #fef5ed;
}

.faq-question .icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff8c42;
    transition: transform 0.2s;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    background: #fefcf8;
    border-top: 1px solid #f0e5d8;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 1.2rem 1.8rem;
    color: #2c3e50;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .cat-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}
