.hotel-faq-section {
    width: 100%;
    margin: 0 auto;
    padding: 60px 80px 150px 80px;
    font-family: "Monserrat", Sans-serif !important;
}

.hotel-faq-title {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin: 0 0 50px;
    color: #2F2F2F;
}

.hotel-faq-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hotel-faq-category-btn {
    padding: 8px 25px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    transition: all 0.3s ease;
    font-family: inherit;
}

.hotel-faq-category-btn:hover {
    background: var(--hotel-accent-2);
    color: var(--hotel-text-color);
}

.hotel-faq-category-btn.active {
    background: var(--hotel-accent-2);
    color: var(--hotel-text-color);
}

.hotel-faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hotel-faq-item {
    background: var(--hotel-accent-15);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hotel-faq-item[data-category] {
    display: none;
}

.hotel-faq-item.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.hotel-faq-question {
    padding: 25px 60px 25px 30px;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    color: #2F2F2F;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hotel-faq-question:hover {
    background: var(--hotel-accent-2);
    color: var(--hotel-text-color);
}

.hotel-faq-question-text {
    flex: 1;
    margin: 0;
    font-weight: 400;
}

.hotel-faq-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.hotel-faq-icon svg {
    width: 100%;
    height: 100%;
    fill: #2F2F2F;
}

.hotel-faq-item.active .hotel-faq-icon {
    transform: translateY(-50%) rotate(180deg);
}

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

.hotel-faq-answer-content {
    background: #FDFCFB;
    padding: 30px;
    color: #2F2F2F;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 300;
}

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

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

@media (max-width: 768px) {
    .hotel-faq-title {
        font-size: 36px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .hotel-faq-categories {
        gap: 8px;
        margin-bottom: 30px;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        justify-content: flex-start;
        padding: 0 20px;
    }
    
    .hotel-faq-categories::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .hotel-faq-category-btn {
        padding: 10px 20px;
        font-size: 14px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .hotel-faq-question {
        padding: 20px 50px 20px 20px;
        font-size: 15px;
    }
    
    .hotel-faq-icon {
        right: 20px;
        width: 34px;
        height: 34px;
    }
    
    .hotel-faq-answer-content {
        padding: 25px 20px 20px;
        font-size: 14px;
    }

    .hotel-faq-section{
        padding: 0 0 50px 0;
    }
    
    .hotel-faq-items {
        padding: 0 14px;
    }

    .hotel-faq-question-text{
        font-size: 16px;
    }

}
