.cityFaq {
    width: 100%;
    max-width: 920px;
    margin: 48px auto 64px;
    padding: 0 24px;
    box-sizing: border-box;
}

.cityFaq__header {
    text-align: center;
    margin-bottom: 32px;
}

.cityFaq__header h2 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
    color: #101828;
    line-height: 1.3;
}

.cityFaq__header p {
    margin: 0;
    font-size: 15px;
    color: #667085;
    line-height: 1.5;
}

.cityFaq__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cityFaq__item {
    display: grid;
    grid-template-columns: 1fr;
    border-bottom: 1px solid #eaecf0;
}

.cityFaq__toggle {
    grid-row: 1;
    grid-column: 1;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.cityFaq__question {
    grid-row: 1;
    grid-column: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    z-index: 1;
}

.cityFaq__question h3 {
    margin: 0;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #101828;
    line-height: 1.45;
}

.cityFaq__icon {
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.cityFaq__icon::before,
.cityFaq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: #98a2b3;
    transition: transform 0.25s ease, background 0.25s ease;
}

.cityFaq__icon::before {
    transform: translate(-50%, -50%);
}

.cityFaq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.cityFaq__item:hover .cityFaq__icon::before,
.cityFaq__item:hover .cityFaq__icon::after,
.cityFaq__toggle:checked ~ .cityFaq__question .cityFaq__icon::before,
.cityFaq__toggle:checked ~ .cityFaq__question .cityFaq__icon::after {
    background: #feb51b;
}

.cityFaq__toggle:checked ~ .cityFaq__question .cityFaq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.cityFaq__answer {
    grid-row: 2;
    grid-column: 1;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
}

.cityFaq__toggle:checked ~ .cityFaq__answer {
    max-height: 400px;
    opacity: 1;
    padding-bottom: 20px;
}

.cityFaq__answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #475467;
}

@media (max-width: 575px) {
    .cityFaq {
        margin: 32px auto 48px;
        padding: 0 16px;
    }

    .cityFaq__header h2 {
        font-size: 22px;
    }

    .cityFaq__header p {
        font-size: 13px;
    }

    .cityFaq__question {
        padding: 16px 0;
    }

    .cityFaq__question h3 {
        font-size: 15px;
    }

    .cityFaq__answer p {
        font-size: 14px;
    }
}
