/* ===== FAQ SECTION ===== */
.conscious-faq {
    background: linear-gradient(135deg, #ffffff 0%, #f9fdf9 100%);
    padding: 80px 0;
    position: relative;
}

.conscious-faq::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 139, 87, 0.2), transparent);
}

.conscious-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.conscious-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.conscious-faq-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1), rgba(60, 179, 113, 0.2));
    color: #2E8B57;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(46, 139, 87, 0.2);
}

.conscious-faq-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.conscious-faq-highlight {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.conscious-faq-highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2E8B57, #3CB371);
    opacity: 0.3;
}

.conscious-faq-subtitle {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* FAQ Grid */
.conscious-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.conscious-faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(46, 139, 87, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.conscious-faq-item:hover {
    border-color: rgba(46, 139, 87, 0.3);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.1);
}

/* FAQ Question */
.conscious-faq-question {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    transition: all 0.3s ease;
}

.conscious-faq-question:hover {
    background: rgba(46, 139, 87, 0.03);
}

.conscious-faq-question[aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.05), rgba(60, 179, 113, 0.1));
}

.conscious-faq-question-text {
    flex: 1;
    text-align: left;
}

.conscious-faq-icon {
    width: 20px;
    height: 20px;
    color: #2E8B57;
    stroke-width: 2;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.conscious-faq-question[aria-expanded="true"] .conscious-faq-icon {
    transform: rotate(180deg);
}

/* FAQ Answer */
.conscious-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.conscious-faq-answer[aria-hidden="false"] {
    max-height: 500px;
}

.conscious-faq-answer p {
    padding: 0 25px 25px;
    margin: 0;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.conscious-faq-answer strong {
    color: #2E8B57;
    font-weight: 600;
}

/* Support Section */
.conscious-faq-support {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    border-radius: 20px;
    padding: 40px;
    color: white;
    text-align: center;
    box-shadow: 0 15px 40px rgba(46, 139, 87, 0.25);
}

.conscious-support-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.conscious-support-icon {
    width: 50px;
    height: 50px;
    stroke-width: 2;
}

.conscious-support-text {
    max-width: 400px;
}

.conscious-support-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.conscious-support-subtitle {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.5;
}

.conscious-support-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #2E8B57;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.conscious-support-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: #2E8B57;
}

.conscious-button-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .conscious-faq-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .conscious-faq {
        padding: 60px 0;
    }
    
    .conscious-faq-title {
        font-size: 32px;
    }
    
    .conscious-faq-subtitle {
        font-size: 16px;
    }
    
    .conscious-faq-question {
        padding: 20px;
        font-size: 17px;
    }
    
    .conscious-faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }
    
    .conscious-faq-support {
        padding: 30px 20px;
    }
    
    .conscious-support-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .conscious-faq-title {
        font-size: 28px;
    }
    
    .conscious-faq-question {
        padding: 18px;
        font-size: 16px;
    }
    
    .conscious-faq-icon {
        width: 18px;
        height: 18px;
    }
    
    .conscious-support-button {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .conscious-faq-title {
        font-size: 24px;
    }
    
    .conscious-faq-question {
        padding: 16px;
    }
    
    .conscious-support-content {
        gap: 15px;
    }
    
    .conscious-support-icon {
        width: 40px;
        height: 40px;
    }
}