.container { 
    display: flex; 
    width: 100%; 
    gap: 0px; 
    flex-wrap: wrap; 
}

.svg-section { 
    flex: 1; 
    padding: 40px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.svg-container { 
    width: 100%; 
    max-width: 500px; 
    height: auto; 
}

.svg-container svg { 
    width: 100%; 
    height: auto; 
}

.faq-section { 
    flex: 1; 
    padding: 40px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.faq-item { 
    margin-bottom: 8px; 
    border-radius: 12px; 
    overflow: hidden; 
    transition: all 0.3s ease; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); 
}

.faq-item:hover { 
    box-shadow: 0 4px 20px rgba(0,0,0,0.12); 
}

.faq-item.active { 
    box-shadow: 0 8px 30px rgba(161,147,126, 0.3);
}

.faq-question { 
    padding: 20px 25px; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    font-weight: 600; 
    color: rgb(83,92,107);
    font-size: 1.1rem; 
    transition: all 0.3s ease; 
    border-left: 4px solid transparent; 
}

.faq-item.active .faq-question { 
    border-left-color: rgb(161,147,126); 
}

.faq-number { 
    background: rgb(83,92,107);
    color: white; 
    width: 28px; 
    height: 28px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: bold; 
    margin-right: 15px; 
    font-size: 0.9rem; 
    transition: all 0.3s ease; 
}

.faq-item.active .faq-number { 
    background: rgb(241,239,236);
    color: rgb(83,92,107);
    transform: scale(1.1); 
}

.faq-text { 
    flex: 1; 
    font-family: "Benton", Arial;
    font-weight: 400;
}

.faq-icon { 
    font-size: 1.2rem; 
    transition: transform 0.3s ease; 
    color: rgb(83,92,107);
    margin-left: auto; 
}

.faq-item.active .faq-icon { 
    transform: rotate(45deg); 
}

.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.3s ease, padding 0.3s ease; 
}

.faq-item.active .faq-answer { 
    max-height: fit-content; 
    padding: 0 25px 20px 68px; 
}

.faq-answer p { 
    color: rgb(83,92,107);
    line-height: 1.6; 
    font-size: 1rem; 
    font-family: "Benton", Arial;
    font-weight: 300;
}

.svg-container svg text.active {
    fill: #a1937e;
    font-weight: bold;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .container { flex-direction: column; }
    .svg-section, .faq-section { padding: 30px 20px; }
}