.question-section {
    background-color: white;
    padding: 30px 150px;
}

@media (min-width: 1400px) {
    .question-section {
        padding: 30px 100px;
    }
}

.question-section .tour-sub-title {
    display: block;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #d02129;
    text-align: center;
    margin-bottom: 15px;
}

.question-section .tour-main-title {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    text-align: center;
    color: #444444;
    max-width: 800px;
    margin: 0 auto 15px;
}

.question-section .tour-description {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #666666;
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    min-height: 80px;
}

.faq-number {
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #444444;
    width: 80px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.faq-title {
    flex-grow: 1;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #444444;
    padding-right: 20px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.faq-icon-btn {
    width: 40px;
    height: 40px;
    background-color: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon-btn span {
    font-size: 24px;
    font-weight: 400;
    color: #444444;
    line-height: 1;
}

/* Expanded State */
.faq-item.active {
    background-color: #e8f1ff;
    border-color: #c0d8ff;
}

.faq-item.active .faq-number,
.faq-item.active .faq-title {
    color: #1f3b8f;
}

.faq-item.active .faq-icon-btn {
    background-color: #1f3b8f;
}

.faq-item.active .faq-icon-btn span {
    color: #ffffff;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 30px 0 110px; /* Align with title (80px number + 30px padding) */
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding-bottom: 30px;
}

.faq-text {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #737373;
    margin: 0;
}

@media (max-width: 768px) {
    .question-section {
        padding: 30px 20px;
    }

    .faq-container {
        width: 100%;
        padding: 0 15px;
    }

    .faq-header {
        padding: 20px;
    }

    .faq-number {
        font-size: 32px;
        width: 60px;
    }

    .faq-title {
        font-size: 16px;
    }

    .faq-content {
        padding-left: 80px;
    }
}
