.about-us {
    padding:50px 0;
    background-image: url('/wp-content/uploads/2025/08/Group-630.svg');
    background-size: cover;
    background-position: center right;
    background-attachment: scroll;
    background-repeat: no-repeat;
    position: relative;
    background-color: var(--color-light-grey);
}
.about-us::before {
    content:'';
    position: absolute;
    height:100%;
    width:calc(50vw - 10px);
    background-color: #FFF;
    z-index: 0;
    top:0;
    left:0;
}
.about-us .container {
    display: flex;
    position: relative;
    z-index: 2;
    gap:100px;
}
.about-us h1 {
    display: flex;
    gap:20px;
    align-items: center;
    width:100%;
    margin-bottom:30px;
}
.about-us h1 span {
    flex-grow: 1;
    height: 2px;
    background-color: var(--color-primary); /* your green shade */
    display: inline-block;
}
.about-us h2 {
    display: flex;
    gap:20px;
    align-items: center;
    font-size: 24px;
}
.about-us h2::after {
    content:'';
    flex-grow: 1;
    height: 2px;
    background-color: var(--color-primary); /* your green shade */
    display: inline-block;
}
.about-us .top-description {
    padding-bottom:30px;
    margin-bottom:50px;
    border-bottom: 1px solid var(--color-border);
}
.about-us .about-cards {
    display: flex;
    gap:30px;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-bottom:40px;
    margin-bottom:40px;
    border-bottom: 1px solid var(--color-border);
}
.about-us .about-cards .card {
    width: calc(50% - 15px);
    border-radius: 20px;
    padding:25px;
    border:1px solid var(--color-border);
}
.about-us .about-cards .card .card-title {
    font-weight: 600;
}
.about-us .about-cards .card .card-text {
    font-size: 14px;
}
.about-us .about-cards .card .card-text p:last-child {
    margin-bottom:0;
}
.about-us .container .column {
    width:calc(50% - 50px);
}
.about-us .footer-form{
    flex-direction: column;
    align-items: flex-start;
    position: sticky;
    top: 50px;
}
.about-us .footer-form .form{
    width:100%;
}





.category-faq-wrap {
    display: flex;
    flex-wrap:wrap;
    gap:30px;
    align-items: flex-start;
}
.category-faq-wrap .category-faq-item {
    width: 100%;
    border-bottom:1px solid var(--color-border);
}
.category-faq-wrap .category-faq-item .category-faq-item-question::after {
    content:'';
    width: 20px;
    height:20px;
    background-image: url(/wp-content/themes/weltausholz/assets/images/green-chevron-bottom.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: all ease-in-out .3s;
}
.category-faq-wrap .category-faq-item.active .category-faq-item-question::after {
    transform: rotate(180deg);
}
.category-faq-wrap .category-faq-item .category-faq-item-question {
    font-weight:700;
    font-size: 18px;
    color: var(--color-text);
    margin-bottom:20px;
    display: flex;
    align-items: center;
    gap:10px;
    justify-content: space-between;
    cursor: pointer;
}
.category-faq-wrap .category-faq-item.active .category-faq-item-question {
    color: var(--color-primary);
}
.category-faq-item-answer > p:last-child {
    margin-bottom:0;
}
.category-faq-wrap .category-faq-item .category-faq-item-answer {
    display: none;
    padding-bottom:15px;
}






@media(max-width:1024px) {
    .about-us .about-cards .card {
        width: 100%;
    }
}
@media(max-width:768px) {
    .about-us {
        background:#FFF;
        padding-bottom:0;
    }
    .about-us::before {
        display:none;
    }
    .about-us h1 {
       display: block;
        margin: auto;
        align-items: center;
        width: fit-content;
        width: -moz-fit-content;
        margin-bottom:30px;
    }
    .about-us h1 span {
        width:100%;
        position: relative;
        bottom: 10px;
    }
    .about-us .about-cards .card {
        width: calc(50% - 15px);
    }
    .about-us .container {
        flex-direction: column;
        gap:0;
    }
    .about-us .container .column {
        width:100%;
    }
    .about-us .container > .column:nth-child(1) {
        padding-bottom:50px;
    }
    .about-us .container > .column:nth-child(2) {
        margin-left:-15px;
        width:calc(100% + 30px);
        padding-left: 15px;
        padding-right:15px;
        padding-top:50px;
        padding-bottom:50px;
        background-image: url('/wp-content/uploads/2025/08/Group-630.svg');
        background-size: cover;
        background-position: center right;
        background-attachment: scroll;
        background-repeat: no-repeat;
        position: relative;
        background-color: var(--color-light-grey);
    }
}
@media(max-width:500px) {
    .about-us .about-cards .card {
        width:100%;
    }
    .about-us .about-cards .card .circle {
        display: none;
    }
    .about-us .about-cards .card .card-title, .about-us .about-cards .card .card-text {
       text-align: center;
    }
    .about-us .about-cards .card .card-text {
        font-size: 12px;
    }
}