/* Target the container and list to ensure they don't force vertical stacking */
#sb_booking_info .booking-info ul.clearfix {
    display: flex !important;
    flex-direction: row !important; /* Forces horizontal alignment */
    flex-wrap: wrap; /* Allows items to wrap if the screen is too narrow */
    justify-content: space-around;
    align-items: flex-start;
}

/* Fix the specific active item and siblings */
#sb_booking_info .step_info_item {
    display: block !important;
    float: none !important; /* Disables old float layouts */
    width: auto !important; /* Prevents it from being squeezed into a vertical pillar */
    text-align: center;
    padding: 10px;
}

/* Ensure the content inside the active item stays horizontal */
#sb_booking_info .step_info_item.active .content {
    display: block !important;
    writing-mode: horizontal-tb !important; /* Explicitly prevents vertical text orientation */
}



@font-face {
    font-family: 'General Sans Regular';
    src: url('https://drive.google.com/file/d/1A-m7rDvBGgnXaX1TtNFNY01gdzrwzwF5/view?usp=drive_link') format('truetype');
    /* Add additional src declarations for different font formats if needed */
}
body {
font-family: 'General Sans', sans-serif;    }

    /* https://drive.google.com/file/d/1LixJsC-onGBwjcyUm7q1jw_XWjhorpS1/view?usp=drive_link*/

#faq-search-bar {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
    font-size: 1em;
}

.faq-container {
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.faq-section {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.faq-section h2 {
    cursor: pointer;
    padding: 10px;
    background-color: #FF6E0B;
    border-radius: 5px;
    font-size: 1.2em;
    color: white;
    font-weight: bold;
}
#content-view > div > div > section > div > div:nth-child(5) > h2,
#content-view > div > div > section > div > div:nth-child(6) > h2,
#content-view > div > div > section > div > div:nth-child(7) > h2{ 
    background-color: #0174BB!important;
}
#content-view > div > div > section > div > div:nth-child(8) > h2,
#content-view > div > div > section > div > div:nth-child(9) > h2,
#content-view > div > div > section > div > div:nth-child(10) > h2{ 
    background-color: #D66288!important;
}

.faq-question {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.faq-question input[type="checkbox"] {
    display: none;
}

.faq-question label {
    display: block;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    position: relative;
    color: #000000!important;
}

.faq-question label::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #000000!important;
}

.faq-question input[type="checkbox"]:checked + label::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 15px;
    background-color: #f9f9f9;
}

.faq-question input[type="checkbox"]:checked ~ .faq-answer {
    max-height: 1200px; /* Adjust this value as needed for the content */
    padding: 15px;
}

.faq-answer p, .faq-answer ul, .faq-answer ol {
    margin: 0 0 15px 0;
}

.faq-answer a {
    color: #0066cc;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.plan-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.plan-table th, .plan-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}
 