.about-faq {
    background: #fff;
}

.about-faq__wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 4rem;
    align-items: center;
}

.about-faq__media img {
    width: 100%;
    display: block;
    object-fit: contain;
}

.about-faq__title {
    font-family: "Libre Franklin", sans-serif;
    font-weight: 700;
    font-size: 2.5rem; /* 36px */
    letter-spacing: 0.025rem;
    color: rgba(45, 45, 45, 0.93);
    margin-bottom: 1.667rem;
}

.about-faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 0.833rem; /* 12px */
}

.about-faq__item {
    border: 0.8px solid rgba(71, 71, 71, 0.3);
    border-radius: 0.694rem; /* 10px */
    overflow: hidden;
}

.about-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.056rem 1.25rem; /* 15.2px */
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: "Libre Franklin", sans-serif;
    font-weight: 600;
    font-size: 1.25rem; /* 18px */
    letter-spacing: 0.0125rem;
    color: rgba(22, 22, 22, 0.88);
}

.about-faq__question img {
    flex-shrink: 0;
    width: 1.5rem; /* ~22px */
    height: 1.5rem;
    transition: transform 0.25s;
}

.about-faq__question[aria-expanded="true"] img {
    transform: rotate(45deg);
}

.about-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.about-faq__answer p {
    padding: 0 1.25rem 1.25rem;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(30, 30, 30, 0.75);
}

@media (max-width: 1200px) {
    .about-faq__wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-faq__media {
        max-width: 20rem;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .about-faq__title {
        font-size: 1.75rem;
    }

    .about-faq__question {
        font-size: 1.0625rem;
    }
}
