/* ──────────────────────────────────────────
 * Incotec FAQ Accordion
 * ────────────────────────────────────────── */

.incotec-faq {
    font-family: "Montserrat", sans-serif;
}

/* Title (supports h2-h6 and div with identical appearance) */
.incotec-faq__title {
    font-size: 24px;
    font-weight: 700;
    color: #002D47;
    margin: 0 0 24px;
    padding: 0;
    line-height: 1.3;
}

/* List */
.incotec-faq__list {
    border-top: 1px solid #e8eeeb;
}

/* Item */
.incotec-faq__item {
    border-bottom: 1px solid #e8eeeb;
}

/* Question (summary) */
.incotec-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    cursor: pointer;
    list-style: none;
}

/* Remove default marker in Safari / Chrome */
.incotec-faq__question::-webkit-details-marker,
.incotec-faq__question::marker {
    display: none;
    content: "";
}

.incotec-faq__question-text {
    font-size: 16px;
    font-weight: 600;
    color: #002D47;
    line-height: 1.4;
}

/* Chevron */
.incotec-faq__chevron {
    flex-shrink: 0;
    color: #002D47;
    transition: transform 0.2s ease;
}

.incotec-faq__item[open] > .incotec-faq__question .incotec-faq__chevron {
    transform: rotate(180deg);
}

/* Answer */
.incotec-faq__answer {
    padding: 0 0 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #3E5B75;
}

.incotec-faq__answer p:first-child {
    margin-top: 0;
}

.incotec-faq__answer p:last-child {
    margin-bottom: 0;
}

/* Links inside answers */
.incotec-faq__answer a {
    color: #002D47;
    text-decoration: underline;
}

.incotec-faq__answer a:hover {
    color: #3E5B75;
}

/* Responsive */
@media (max-width: 767px) {
    .incotec-faq__title {
        font-size: 20px;
    }

    .incotec-faq__question-text {
        font-size: 15px;
    }

    .incotec-faq__answer {
        font-size: 14px;
    }
}
