.zemex-faq-section {
    width: 100%;
    padding: clamp(40px, 8vh, 80px) 0;
    background: transparent;
}

.faq-section-title {
    font-family: 'TT Wellingtons', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 4vw, 38px);
    line-height: 1.2;
    letter-spacing: -0.48px;
    color: #030813;
    margin: 0 0 clamp(32px, 4vh, 48px) 0;
    text-align: left;
    padding: 0 64px;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
}

.faq-container {
    width: 100%;
    max-width: 1006px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.zemex-faq-section--fullwidth .faq-container {
    max-width: none;
    padding: 0 64px;
}

.faq-card {
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
}

.faq-question {
    flex: 1;
    font-family: 'TT Wellingtons', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.24px;
    color: #030813;
    margin: 0;
    transition: color 0.3s ease;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
}

.faq-card:hover .faq-question {
    color: #00bf3f;
}

.faq-toggle-btn {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #ffffff;
    border: none;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle-btn:hover {
    background: #00bf3f;
    transform: scale(1.05);
}

.faq-toggle-btn:hover .faq-icon path {
    stroke: #ffffff;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon path {
    transition: stroke 0.3s ease;
}

.faq-content {
    margin-top: 16px;
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer {
    font-family: 'TT Wellingtons', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 27.9px;
    letter-spacing: -0.18px;
    color: #6f737a;
    margin: 0 0 16px 0;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
}

.faq-link {
    display: inline-block;
    font-family: 'TT Wellingtons', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 27.9px;
    letter-spacing: -0.18px;
    color: #00bf3f;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
}

.faq-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00bf3f;
    transition: width 0.3s ease;
}

.faq-link:hover::after {
    width: 100%;
}

.faq-link:hover {
    color: #00a335;
}

@media (max-width: 1024px) {
    .faq-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .zemex-faq-section {
        padding: clamp(32px, 6vh, 60px) 0;
    }
    
    .zemex-faq-section--fullwidth .faq-container {
        padding: 0 32px;
    }
    
    .faq-card {
        padding: 24px;
        border-radius: 20px;
    }
    
    .faq-question {
        font-size: 20px;
        line-height: 30px;
    }
    
    .faq-toggle-btn {
        width: 48px;
        height: 48px;
    }
    
    .faq-answer {
        font-size: 16px;
        line-height: 24px;
    }
    
    .faq-link {
        font-size: 16px;
        line-height: 24px;
    }

    .faq-section-title {
        font-family: 'TT Wellingtons', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-weight: 600;
        font-size: clamp(23px, 4vw, 38px);
        margin: 0 0 clamp(30px, 4vh, 48px) 0;
        text-align: left;
        padding: 0 20px;
    }
}

@media (max-width: 479px) {
    .zemex-faq-section--fullwidth .faq-container {
        padding: 0 16px;
    }
    
    .faq-card {
        padding: 20px;
        border-radius: 16px;
        gap: 16px;
    }
    
    .faq-header {
        gap: 16px;
    }
    
    .faq-question {
        font-size: 18px;
        line-height: 26px;
    }
    
    .faq-toggle-btn {
        width: 44px;
        height: 44px;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-answer {
        font-size: 15px;
        line-height: 22px;
    }
}
