﻿.faq {
    margin-bottom: 60px;
}

.faq__title {
    font-size: 32px;
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.accordion-wrapper {
    max-width: 700px;
    margin: 0 auto;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Accordion box style */
.accordion-outer {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease;
}

    .accordion-outer:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }

/* Heading */
.accordion-heading {
    background-color: #f9f9f9;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    color: #333;
    position: relative;
    transition: background-color 0.2s ease;
}

    .accordion-heading:hover {
        background-color: #f1f1f1;
    }

    /* Plus/minus icon */
    .accordion-heading:after {
        content: "+";
        position: absolute;
        right: 20px;
        font-size: 22px;
        color: #888;
        transition: transform 0.2s ease;
    }

.accordion-outer.is-open .accordion-heading:after {
    content: "-";
    transform: rotate(180deg);
    color: #be1d37;
}


.accordion-content {
    padding: 15px 20px;
    background-color: #fff;
    display: none;
    border-top: 1px solid #eee;
}

    .accordion-content p {
        margin: 0;
        font-size: 15px;
        color: #555;
        line-height: 1.6;
    }
