.faq-section {
    background-color: #f8fafc;
    padding: 30vh 0 60px 0;
    min-height: 100vh;
    position: relative;
}

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

/* Header styles */
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.blue-line {
    width: 60px;
    height: 4px;
    background-color: #00A0FA;
    margin: 0 auto;
}

/* Search box styles */
.search-container {
    margin-bottom: 50px;
}

.search-box {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.search-box:focus-within {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #00A0FA;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

#faq-search {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: none;
    font-size: 16px;
    outline: none;
}

/* FAQ content layout */
.faq-content {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.faq-sidebar {
    flex: 0 0 250px;
}

.faq-sidebar h2 {
    font-size: 24px;
    font-weight: 600;
    color: #00A0FA;
    line-height: 1.3;
}

.faq-questions {
    flex: 1;
}

/* FAQ items styling */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-item.hidden {
    display: none;
}

.faq-item.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.toggle-icon {
    font-size: 24px;
    color: #64748b;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding-right: 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 10px 0;
    color: #4b5563;
}

/* No results message */
.no-results {
    text-align: center;
    padding: 30px;
    color: #64748b;
    font-size: 18px;
    animation: fadeIn 0.5s ease;
}

/* Chat button */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #00A0FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4);
}

.chat-button svg {
    color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
    .faq-content {
        flex-direction: column;
    }

    .faq-sidebar {
        margin-bottom: 30px;
    }

    .faq-header h1 {
        font-size: 32px;
    }
}