/* FAQ Section Styling for Pricing Page - Copied from Home Page */
/* Using CSS Variables for consistency */
:root {
    --primary-color: #4299e1;
    --surface-color: #ffffff;
    --border-color: #e2e8f0;
    --text-primary: #2d3748;
    --text-secondary: #718096;
}

.faq-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    background-color: var(--surface-color);
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 2.25rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.faq-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    line-height: 1.6;
    color: var(--text-primary);
}

.faq-answer ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.5;
}

.faq-answer a {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-contact {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
}

.faq-contact p {
    margin: 0;
    font-size: 1.1rem;
}

.faq-contact a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
}

.faq-contact a:hover {
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        margin-top: 40px;
    }
    
    .faq-header h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
    
    .faq-contact {
        margin-top: 30px;
        padding: 15px;
    }
    
    .faq-contact p {
        font-size: 1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section-new {
        margin-top: 40px;
    }
    
    .faq-header-new h2 {
        font-size: 1.5rem;
    }
    
    .faq-question-new {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .faq-item-new.active .faq-answer-new {
        padding: 0 15px 15px;
    }
    
    .faq-contact-new {
        margin-top: 30px;
        padding: 15px;
    }
    
    .faq-contact-new p {
        font-size: 1rem;
    }
}
