/* ===== SECTION 010: FAQ ===== */
.faq010-container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    margin: 0 auto; /* Center the container */
    padding: 40px 20px; /* Add padding for spacing */
}

.faq010-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq010-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq010-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.faq010-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.faq010-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq010-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq010-question:hover {
    background-color: rgba(24, 119, 242, 0.05);
}

.faq010-question-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq010-question-text i {
    color: #1877F2;
    font-size: 1.3rem;
}

.faq010-toggle {
    color: #1877F2;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq010-item.active .faq010-toggle {
    transform: rotate(180deg);
}

.faq010-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq010-item.active .faq010-answer {
    max-height: 1000px;
}

.faq010-answer-content {
    padding: 0 25px 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: flex-start;
    justify-content: center;
}

.faq010-answer-text-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.faq010-answer-text {
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq010-answer-text i {
    color: #1877F2;
    margin-top: 4px;
    flex-shrink: 0;
}

.faq010-video-card {
    flex: 0 0 auto;
    width: 280px;
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq010-video-container {
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq010-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq010-video-label {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.faq010-video-label i {
    color: #1877F2;
}

.faq010-cta {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.faq010-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.faq010-cta-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.faq010-cta-title i {
    color: #1877F2;
    font-size: 1.8rem;
}

.faq010-cta-content {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.faq010-button {
    background: linear-gradient(135deg, #1877F2, #0d5fbf);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.faq010-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.faq010-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq010-container {
        padding: 30px 15px;
    }
    
    .faq010-title {
        font-size: 2rem;
    }
    
    .faq010-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .faq010-answer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .faq010-answer-text-card {
        min-width: 100%;
        padding: 18px;
    }
    
    .faq010-video-card {
        width: 100%;
        max-width: 280px;
    }
    
    .faq010-question-text {
        font-size: 1.1rem;
    }
    
    .faq010-cta {
        margin-top: 30px;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .faq010-container {
        padding: 20px 10px;
    }
    
    .faq010-title {
        font-size: 1.8rem;
    }
    
    .faq010-subtitle {
        font-size: 1rem;
    }
    
    .faq010-question {
        padding: 15px 20px;
    }
    
    .faq010-question-text {
        font-size: 1rem;
    }
    
    .faq010-answer-content {
        padding: 0 20px 20px;
        gap: 15px;
    }
    
    .faq010-answer-text-card, .faq010-video-card {
        padding: 15px;
    }
    
    .faq010-answer-text {
        font-size: 1rem;
    }
    
    .faq010-cta {
        padding: 20px;
        margin-top: 25px;
    }
    
    .faq010-cta-title {
        font-size: 1.3rem;
    }
    
    .faq010-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .faq010-video-card {
        width: 100%;
        max-width: 250px;
    }
}