.elementor-28735 .elementor-element.elementor-element-febcaa5{--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-fd14525 */.custom-post {
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Card Styling for each section */
.custom-post .custom-card {
    background-color: white;
    padding: 20px;
    margin: 20px 0; /* Left and right margin is 0, top/bottom margin 20px for separation */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for card effect */
    border: 1px solid #eee;
}

.custom-post h2, .custom-post h3, .custom-post h4 {
    color: #003f63;
    padding: 10px 0;
    border-bottom: 2px solid #003f63;
    margin-top: 0; /* Reset margin top as card provides spacing */
    margin-bottom: 15px;
}

/* Header Card (different color theme) */
.custom-post .header-card {
    background-color: #005b96;
    color: white;
    padding: 25px 20px;
    border-radius: 5px;
    margin: 0 0 20px 0;
    text-align: center;
    box-shadow: none; /* Remove shadow to make it distinct from content cards */
}

/* Table Styling */
.custom-post .responsive-table {
    overflow-x: auto;
    margin: 15px 0;
}
.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    margin-bottom: 10px;
}
.custom-post th {
    background-color: #e2f0fb;
    color: #003f63;
    font-weight: bold;
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}
.custom-post td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

/* List Styling */
.custom-post ul, .custom-post ol {
    margin-left: 20px;
    padding-left: 0;
}
.custom-post li {
    margin-bottom: 8px;
}

/* Important Notes Box Styling */
.custom-post .important {
    border: 1px solid #ffca2c;
    border-left: 5px solid #ffca2c;
    background-color: #fff3cd;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

/* Button Styling */
.custom-post .button {
    display: block;
    width: fit-content;
    margin: 25px auto;
    padding: 12px 25px;
    background-color: #005b96;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.custom-post .button:hover {
    background-color: #003f63;
}

/* Footer Styling */
.custom-post .footer-links {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #ddd;
    margin-top: 30px;
}
.custom-post .footer-links a {
    color: #005b96;
    text-decoration: none;
    margin: 0 10px;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .custom-post .custom-card {
        padding: 15px;
        margin: 15px 0;
    }
    .custom-post th, .custom-post td {
        padding: 8px;
        display: block;
    }
    .custom-post table, .custom-post tr {
        display: block;
    }
    .custom-post td:before {
        content: attr(data-label);
        font-weight: bold;
        float: left;
        margin-right: 10px;
        color: #003f63;
    }
}/* End custom CSS */