.help-support-container {
    max-width: 1440px;
    display: flex;
    gap: 40px;
    align-self: center;
    width: 100%;
    padding: 0 40px;
    margin-bottom: 140px;
}

.help-support-container .faq-section {
    flex: 1;
}

.help-support-container .faq-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 32px;
    color: #333;
}

.help-support-container .faq-item {
    background: #e7f0f5;
    border-radius: 24px;
    margin-bottom: 15px;
    padding: 33px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.help-support-container .faq-item.active {
    background: #e7f0f5;
    padding-bottom: 20px;
}

.help-support-container .faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(32, 32, 32, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.help-support-container .faq-answer {
    margin-top: 16px;
    color: rgba(32, 32, 32, 1);
    line-height: 150%;
    display: none;
}

.help-support-container .faq-item.active .faq-answer {
    display: block;
}

.help-support-container .arrow {
    transition: transform 0.3s ease;
}

.help-support-container .faq-item.active .arrow {
    transform: rotate(180deg);
}

.help-support-container .faq-content-section {
    flex: 0 0 38%;
    /* background: #ffecdd; */
    /* border-radius: 20px; */
    height: fit-content;
}

.help-support-container .family-image {
    width: 100%;
    height: 441px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect fill="%23f3f4f6" width="400" height="200"/><text x="200" y="100" text-anchor="middle" fill="%23666">Family Photo</text></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    /* margin-bottom: 30px; */
}

.help-support-container .contact-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: rgba(32, 32, 32, 1);
}

.help-support-container .contact-description {
    color: rgba(32, 32, 32, 1);
    line-height: 1.6;
    margin-bottom: 23px;
    opacity: 70%;
}

.help-support-container .contact-info {
    margin-bottom: 22px;
}

.help-support-container .contact-item {
    margin-bottom: 8px;
    color: rgba(32, 32, 32, 1);
    /* opacity: 70%; */
}

.help-support-container .contact-item span {
    opacity: 70%;
}


.help-support-container .contact-link {
    color: #ffa865;
    text-decoration: none;
}

.help-support-container .social-icons {
    display: flex;
    gap: 15px;
}

.help-support-container .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.help-support-container .social-icon:hover {
    background: #ea580c;
}

.faq-question h2 {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 800;
}

.page-id-507 {
    margin-bottom: 0;
}


.contact-section {
    margin-top: -61px;
    background: rgba(255, 236, 221, 1);
    padding: 80px;
    border-radius: 32px;
}

.feedback-bot ul li {
    display: flex;
    gap: 16px;
}

@media screen and (max-width: 1024px) {
    .help-support-container {
        flex-direction: column;
        padding: 0 24px;
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 767px) {
    .help-support-container .family-image {
        height: 330px;
    }

    .contact-section {
        padding: 40px;
    }
}

@media screen and (max-width: 500px) {
    .help-support-container .family-image {
        height: 260px;
    }

    .contact-section {
        padding: 25px;
    }
}

.faq-question svg.arrow {
    width: 30px;
    opacity: 30%;
    height: 30px;
}