 .load-more-container {
            text-align: center;
            margin: 30px 0;
        }
        .btn-load-more {
            padding: 12px 40px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .btn-load-more:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        #loadingSpinner {
            display: none;
            margin-left: 10px;
        }
        .airline-logo-wrapper {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #e5e5e5;
            border-radius: 50px;
            overflow: hidden;
        }
        .airline-logo-text {
            font-size: 24px;
            font-weight: bold;
            color: #183b56;
            text-align: center;
        }

        /* FAQ Accordion Styles */
        .accordion-item {
            border: 1px solid #e3e3e3;
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
        }
        .accordion-item:first-child {
            border-top: 1px solid #e3e3e3;
        }
        .accordion-button {
            background-color: #00b386c2;
            color: #ffffff;
            font-weight: 500;
            font-size: 16px;
            padding: 15px 20px;
            border: none;
        }
        .accordion-button:not(.collapsed) {
            background-color: #183b56;
            color: white;
            box-shadow: none;
        }
        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }
        .accordion-button::after {
            filter: brightness(0) invert(1);
        }
        .accordion-button:not(.collapsed)::after {
            filter: brightness(1) invert(0);
        }
        .accordion-body {
            padding: 20px;
            background-color: white;
            color: #5a5a5a;
            line-height: 1.6;
        }
        .accordion-collapse {
            border-top: 1px solid #e3e3e3;
        }