@font-face {
    font-family: Satoshi;
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/Satoshi-Light.66b6be60.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/Satoshi-LightItalic.3e548608.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Satoshi-Regular.811ccb0b.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/Satoshi-Italic.931b0a35.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/Satoshi-Medium.e9d34f04.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: italic;
    font-weight: 500;
    src: url(../fonts/Satoshi-MediumItalic.2097b0fe.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/Satoshi-Bold.b5dd7dee.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: italic;
    font-weight: 700;
    src: url(../fonts/Satoshi-BoldItalic.ed285528.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/Satoshi-Black.d27fb329.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: italic;
    font-weight: 900;
    src: url(../fonts/Satoshi-BlackItalic.e1c41ced.otf) format("opentype")
}

.faq-section {
    background-color: #ffffff;
    font-family: 'Satoshi', sans-serif;
    padding: 100px 0;
    width: 100%;
}

.faq-section .faq-container {
    margin: 0 auto;
    max-width: 900px;
    padding: 0 20px;
}

.faq-section .faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-section .faq-item {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); 
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-section .faq-item:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.faq-section .faq-question-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 35px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Satoshi', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.3s ease;
}

.faq-section .faq-icon {
    background-color: #000000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-section .faq-icon:before,
.faq-section .faq-icon:after {
    content: "";
    position: absolute;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.faq-section .faq-icon:before { width: 14px; height: 2px; }
.faq-section .faq-icon:after { width: 2px; height: 14px; }  

.faq-section .faq-answer-wrap {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}


.faq-section .faq-item.is-open .faq-answer-wrap {
    display: block !important; 
    max-height: 1000px; 
    opacity: 1;
    visibility: visible;
    padding: 0 35px 35px 35px; 
}

.faq-section .faq-item.is-open .faq-question-wrap {
    color: #0d9488; 
}

.faq-section .faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}

.faq-section .faq-item.is-open .faq-icon:after {
    opacity: 0; 
}

.faq-section .faq-answer {
    color: #64748b;
    font-size: 18px;
    line-height: 1.7;
}