.elementor-28857 .elementor-element.elementor-element-6c2e265{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-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 );}/* Start custom CSS for text-editor, class: .elementor-element-5db3552 */.custom-post {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 0;
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
}

.custom-post-header {
    background-color: #005b96;
    color: white;
    padding: 15px;
    margin: 0;
    border-radius: 8px;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

/* New Card Styling for Sections */
.custom-card {
    background-color: white; /* White background for the card */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for card effect */
    border: 1px solid #eee; /* Light border for definition */
}

.custom-post h2, .custom-post h3, .custom-post h4 {
    color: #003f63;
    border-bottom: 2px solid #e2f0fb;
    padding-bottom: 5px;
    margin-top: 0; /* Adjusted for card structure */
    margin-bottom: 15px;
}

.custom-post p, .custom-post ul, .custom-post ol, .custom-post table {
    margin-bottom: 15px;
}

.responsive-table {
    overflow-x: auto;
    width: 100%;
    margin-bottom: 20px;
}

.responsive-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    margin: 0;
}

.responsive-table th, .responsive-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    word-wrap: break-word;
}

.responsive-table th {
    background-color: #e2f0fb;
    color: #003f63;
    font-weight: bold;
}

.responsive-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.important {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    border-left: 5px solid #ffca2c;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.button-link {
    display: block;
    width: fit-content;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #005b96;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.button-link:hover {
    background-color: #003f63;
}

.table-of-contents ul {
    list-style: none;
    padding-left: 0;
}

.table-of-contents li a {
    color: #005b96;
    text-decoration: none;
}

.table-of-contents li a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .custom-post-header {
        font-size: 1.2em;
        padding: 10px;
    }
    .responsive-table th, .responsive-table td {
        padding: 8px;
        font-size: 0.9em;
    }
    .button-link {
        width: 90%;
        margin: 20px auto;
    }
    .custom-card {
        padding: 15px;
    }
}/* End custom CSS */