.elementor-2573 .elementor-element.elementor-element-5d6ccc96{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-2573 .elementor-element.elementor-element-0e6af67{--display:flex;}/* Start custom CSS for html, class: .elementor-element-b70f830 */body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.container {
    margin: 0px;
}

.accordion {
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.accordion-label {
    display: none; /* Hide the accordion label on desktop */
    padding: 15px;
    font-size: 1.2em;
    background-color: #0f4a86;
    color: #fff;
    cursor: pointer;
    user-select: none;
}

.accordion-content {
    max-height: none; /* Allow full height on desktop */
    overflow: hidden;
    overflow-y: auto; /* Enable vertical scrolling */
}

.accordion input[type="checkbox"] {
    display: none;
}

.accordion input[type="checkbox"]:checked ~ .accordion-content {
    max-height: 1000px; /* Adjust according to content length */
}

.table-wrapper {
    overflow-x: auto; /* Enable horizontal scrolling */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #0f4a86;
    color: white;
}

@media screen and (max-width: 600px) {
    .accordion-label {
        display: block; /* Show the accordion label on mobile */
    }

    .accordion-content {
        max-height: 0; /* Collapse the content initially */
        overflow: hidden; /* Hide overflow initially */
    }

    .accordion input[type="checkbox"]:checked ~ .accordion-content {
        max-height: 1000px; /* Expand the content when checked */
        overflow: auto; /* Enable vertical and horizontal scrolling */
    }

    .table-wrapper {
        overflow-x: auto; /* Ensure horizontal scrolling on mobile */
    }

    table {
        display: block; /* Ensure the table behaves properly on mobile */
        overflow-x: auto; /* Enable horizontal scrolling */
    }

    th, td {
        white-space: nowrap; /* Prevent wrapping of text in table cells */
    }
}/* End custom CSS */