/*
Theme Name: Mannheim Schluesseldienst Child
Description: Child theme for mannheim-schluesseldienst.de
Template: multisite
Text Domain: mannheim-schluesseldienst
Version: 1.0.0
*/

.how-we-work__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.how-we-work__title {
    margin-bottom: 24px;
    line-height: 1.1;
}

.how-we-work__info p {
    font-size: 18px;
    color: #7e8ca4;
    line-height: 1.6;
    margin: 0 0 18px;
}

.how-we-work__item {
    border-bottom: 1px solid #e6eaef;
    background: #fff;
}

.how-we-work__item:last-child {
    border-bottom: none;
}

.how-we-work__toggle {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 22px;
    font-weight: 700;
    color: #303f54;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.how-we-work__toggle span {
    font-size: 22px;
}

.how-we-work__toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid #303f54;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.how-we-work__item.active .how-we-work__toggle::after {
    transform: rotate(180deg);
}

.how-we-work__content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.how-we-work__item.active .how-we-work__content {
    padding-bottom: 20px;
}

.how-we-work__content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #6f7d91;
}

@media (max-width: 1300px) {
    .how-we-work__toggle {
        font-size: 20px;
    }

    .how-we-work__toggle span {
        font-size: 20px;
    }
}

@media (max-width: 1023px) {
    .how-we-work__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-we-work__toggle {
        font-size: 19px;
    }

    .how-we-work__toggle span {
        font-size: 19px;
    }
}

@media (max-width: 767px) {
    .how-we-work__toggle {
        font-size: 18px;
        padding: 16px 0;
    }

    .how-we-work__toggle span {
        font-size: 18px;
    }

    .how-we-work__info p {
        font-size: 16px;
    }

    .how-we-work__content p {
        font-size: 15px;
    }
}

.faq-main__wrapper {
    margin: 0 auto;
}

.faq-main__title {
    text-align: center;
    margin-bottom: 48px;
    font-size: 32px;
    line-height: 1.2;
    color: #111a35;
}

.faq-main__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.faq-main__column {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.faq-main__item {
    background: #e9e9ec;
    border-radius: 24px;
}

.faq-main__toggle {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    text-align: left;
    color: #111a35;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 24px;
}

.faq-main__question {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.faq-main__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #ff6f3d;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.faq-main__toggle::after {
    content: none;
}

.faq-main__item.active {
    background: #dfdfe4;
}

.faq-main__content {
    padding: 0 28px 0 92px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.faq-main__item.active .faq-main__content {
    padding-bottom: 24px;
}

.faq-main__content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #2f3d57;
}

@media (max-width: 1300px) {
    .faq-main__title {
        font-size: 32px;
    }

    .faq-main__toggle {
        padding: 22px 24px;
        gap: 16px;
    }

    .faq-main__icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 30px;
    }

    .faq-main__question {
        font-size: 17px;
    }

    .faq-main__content {
        padding: 0 24px 0 80px;
    }

    .faq-main__content p {
        font-size: 16px;
    }
}

@media (max-width: 1023px) {
    .faq-main__columns {
        grid-template-columns: 1fr;
    }

    .faq-main__title {
        font-size: 30px;
        margin-bottom: 28px;
    }

    .faq-main__question {
        font-size: 17px;
    }

    .faq-main__content p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .faq-main__toggle {
        padding: 16px;
        gap: 12px;
    }

    .faq-main__title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .faq-main__icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 26px;
    }

    .faq-main__question {
        font-size: 16px;
    }

    .faq-main__content {
        padding: 0 16px 0 64px;
    }

    .faq-main__item.active .faq-main__content {
        padding-bottom: 16px;
    }

    .faq-main__content p {
        font-size: 15px;
    }
}
