.cspro-faq-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0 3px 6px -1.5px rgba(14, 63, 126, 0.02),
        0 2px 4px -1px rgba(14, 63, 126, 0.03),
        0 1px 2px -0.5px rgba(14, 63, 126, 0.04),
        0 0 0 1px rgba(14, 63, 126, 0.04);
    padding: 32px 24px;
    width: 100%;
}

.cspro-faq-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
}

.cspro-faq-item {
    width: 100%;
}

.cspro-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 16px 24px;
    color: #2F2F3C!important;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    transition: color 0.25s ease, background-color 0.2s ease;
    user-select: none;
    border-radius: 8px;
    margin: -16px -24px;
    width: calc(100% + 48px);
    box-sizing: border-box;
}

.cspro-faq-question:hover {
    color: #1a1a24;
}

.cspro-faq-question span {
    flex: 1;
    padding-right: 20px;
}

.cspro-faq-question i {
    font-size: 24px;
    transition: transform 0.28s cubic-bezier(.25, .8, .25, 1),
        color 0.25s ease;
    color: #2F2F3C;
    flex-shrink: 0;
}

.cspro-faq-question.active i {
    transform: rotate(45deg);
    color: #2F2F3C;
}

.cspro-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    padding-bottom: 0;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.3s ease,
        margin-top 0.4s ease,
        padding-bottom 0.4s ease;
}

.cspro-faq-answer.active {
    opacity: 1;
    padding-bottom: 24px;
}

.cspro-faq-answer p {
    color: #78788B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom: 0;
}

.cspro-faq-divider {
    border: 0;
    border-top: 1px solid #E8E8F0;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .cspro-faq-container {
        gap: 40px;
        margin-bottom: 60px;
        padding-bottom: 24px;
    }

    .cspro-faq-question {
        font-size: 16px;
        margin: -16px -16px;
        width: calc(100% + 32px);
        padding: 16px;
        box-sizing: border-box;
    }

    .cspro-faq-answer p {
        font-size: 14px;
    }
}

.cspro-faq-contact-card-wrapper {
    border-radius: 20px;
    border: 1px solid var(--Neutral-200, #E8E8F0);
    background: var(--Neutral-100, #F7F7FA);
    display: flex;
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    align-self: stretch;
}

.cspro-faq-contact-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.cspro-faq-contact-card-text h6 {
    margin: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    color: #2F2F3C;
}

.cspro-faq-contact-card-text span {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: #78788B;
}

.cspro-faq-contact-card-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px 8px 16px;
    color: #2F2F3C !important;
    text-decoration: none;
    white-space: nowrap;
    height: fit-content!important;
}

.cspro-faq-contact-card-link-btn:hover {
    color: #2F2F3C !important;
    text-decoration: none;
}

.cspro-faq-contact-card-link-btn i {
    font-size: 16px;
    line-height: 1;
    margin-left: 4px;
}

@media (max-width:991px) {
  .cspro-faq-contact-card-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .cspro-faq-contact-card-wrapper {
    padding: 8px 12px;
  }

  .cspro-faq-contact-card-link-btn {
    font-size: 14px;
    height: 32px !important;
    padding: 6px 12px 6px 16px;
  }
}
