/* FAQ Block Styles */
.pmk-faq-block {
    background-color: var(--pmk-beige, #f8f5f1);
    padding: 80px 0;
}

/* Header */
.pmk-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.pmk-faq-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--pmk-secondary, #1a1919);
    margin: 15px 0 0;
    line-height: 1.2;
}

.pmk-faq-heading .pmk-title-highlight {
    display: inline;
    color: var(--pmk-primary, #E72B2A);
    background-image: linear-gradient(to right, rgba(231, 43, 42, 0.2) 0%, rgba(231, 43, 42, 0.2) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 85%;
}

/* FAQ List */
.pmk-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.pmk-faq-item {
    background: var(--pmk-white, #fff);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.pmk-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Question Button */
.pmk-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: background-color 0.2s ease;
}

.pmk-faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.pmk-faq-question-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--pmk-secondary, #1a1919);
    line-height: 1.4;
}

.pmk-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--pmk-primary, #E72B2A);
    transition: transform 0.3s ease;
}

.pmk-faq-icon svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    color: #fff;
}

.pmk-faq-question[aria-expanded="true"] .pmk-faq-icon {
    transform: rotate(180deg);
}

/* Answer */
.pmk-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.pmk-faq-answer-inner {
    padding: 0 28px 22px;
}

.pmk-faq-answer-inner p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--pmk-gray, #666);
    margin: 0;
}

/* Active state */
.pmk-faq-item.active .pmk-faq-question {
    background-color: rgba(231, 43, 42, 0.03);
}

/* Responsive */
@media (max-width: 768px) {
    .pmk-faq-block {
        padding: 60px 0;
    }

    .pmk-faq-heading {
        font-size: 32px;
    }

    .pmk-faq-question {
        padding: 18px 20px;
    }

    .pmk-faq-question-text {
        font-size: 15px;
    }

    .pmk-faq-answer-inner {
        padding: 0 20px 18px;
    }
}
