.faq-section {
    padding: 80px 0;
    /* Background will be set via inline styles */
    display: flex;
    align-items: center;
    min-height: auto; /* Will be overridden by inline styles if needed */
}

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

.faq-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section__title {
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    /* Color and font-size will be set via inline styles */
}

.faq-section__title .highlight {
    /* Color will be set via inline styles */
}

.faq-section__items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item__question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d3748;
    transition: all 0.3s ease;
}

.faq-item__question:hover {
    background: rgba(14, 165, 233, 0.05);
}

.faq-item__question-text {
    flex: 1;
    margin-right: 1rem;
}

.faq-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #0ea5e9;
    transition: transform 0.3s ease;
}

.faq-item--open .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item--open .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer-content {
    padding: 0 2rem 1.5rem 2rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section__title {
        margin-bottom: 2rem;
    }
    
    .faq-item__question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-item__answer-content {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-section .container {
        padding: 0 15px;
    }
    
    .faq-item__question {
        padding: 1rem 1.25rem;
    }
    
    .faq-item__answer-content {
        padding: 0 1.25rem 1rem 1.25rem;
    }
}