.social-links {
    list-style: none !important;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: left;
}

.enzaime-footer-social-link {
    margin: 0 !important;
}

.enzaime-faq-section {
    max-width: 870px;
    margin: auto;
    font-family: 'Inter', sans-serif;
}

.enzaime-faq-title-section {
    max-width: 570px;
    margin: auto;
    text-align: center;
    margin-bottom: 32px;
}

.enzaime-faq-title {
    text-align: center;
    font-size: 44px;
    line-height: 54px;
    font-weight: 700;
    font-family: Manrope;
}

.enzaime-faq-list {
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.enzaime-faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background-color: #fff;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
    position: relative;
}

.enzaime-faq-item.active {
    box-shadow: 0px 20px 70px 0px rgba(24, 26, 30, 0.07);
    border-color: transparent;
    z-index: 1;
}

.enzaime-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    font-family: Manrope;
    cursor: pointer;
    transition: background 0.2s;
}

.enzaime-faq-number {
    font-weight: 700;
    margin-right: 12px;
    color: #000;
}

.enzaime-faq-text {
    flex-grow: 1;
    color: #000;
}

.enzaime-faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1c1c1c;
    border-radius: 5px;
    background-color: transparent;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    padding: 4px;
    position: relative;
}

.toggle-icon {
  transition: opacity 0.3s ease;
}


.enzaime-faq-toggle .icon-minus{
    display: none;
}

.enzaime-faq-item.active .enzaime-faq-toggle {
    background-color: #0067FF;
    border-color: #0067FF;
}

.enzaime-faq-answer {
    display: none;
    padding: 0 24px 20px 24px;
    color: #555;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0;
    font-family: Manrope;
}
