.elementor-28845 .elementor-element.elementor-element-4d6cecb{--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 );}.elementor-28845 .elementor-element.elementor-element-7bb031b > .elementor-widget-container{padding:0px 0px 0px 0px;}/* Start custom CSS for text-editor, class: .elementor-element-7bb031b */.custom-post {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
    box-sizing: border-box;
}

.custom-post * {
    box-sizing: border-box;
}

/* Header Styling */
.custom-post h1 {
    background-color: #005b96;
    color: white;
    padding: 15px 10px;
    margin: 0 0 20px 0;
    border-radius: 8px;
    font-size: 1.8em;
    text-align: center;
}

/* Card Styling for Sections */
.custom-post .section-card {
    background-color: white; /* White background for the card */
    padding: 10px; /* Internal padding for the card content */
    margin: 20px 0; /* Margin between cards (left/right margin is still 0 due to custom-post) */
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden; /* Important for containing floating elements if any */
}

/* Section Heading Styling */
.custom-post .section-card h2 {
    background-color: #003f63;
    color: white;
    padding: 10px;
    margin: -10px -10px 15px -10px; /* Adjust margin to span the card width, negative margin balances the padding */
    font-size: 1.5em;
    border-radius: 6px 6px 0 0;
}

.custom-post h3 {
    color: #005b96;
    margin: 20px 0 10px 0;
    padding-bottom: 5px;
    border-bottom: 2px solid #e2f0fb;
    font-size: 1.3em;
}

.custom-post p, .custom-post ul, .custom-post ol {
    margin: 10px 0;
    padding-left: 20px;
    text-align: justify;
}

.custom-post ul, .custom-post ol {
    list-style-position: inside;
}

.custom-post a.button {
    display: block;
    width: fit-content;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #003f63;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s;
}

.custom-post a.button:hover {
    background-color: #005b96;
}

.custom-post .responsive-table {
    overflow-x: auto;
    margin: 20px 0;
}

.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    margin: 0;
}

.custom-post th, .custom-post td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.custom-post th {
    background-color: #e2f0fb;
    color: #003f63;
    font-weight: bold;
}

.custom-post tr:nth-child(even) {
    background-color: #f9f9f9;
}

.custom-post tr:hover {
    background-color: #f0f0f0;
}

.custom-post .important {
    margin: 20px 0;
    padding: 15px;
    background-color: #fff3cd;
    border-left: 5px solid #ffca2c;
    border-radius: 4px;
}

.custom-post .toc {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 20px 0;
    background-color: #f7f7f7;
    border-radius: 5px;
}

.custom-post .toc h3 {
    margin-top: 0;
    border-bottom: 1px solid #ddd;
}

.custom-post .toc ul {
    list-style: none;
    padding-left: 0;
}

.custom-post .toc li {
    padding: 5px 0;
}

.custom-post .toc a {
    color: #005b96;
    text-decoration: none;
}

.custom-post .toc a:hover {
    text-decoration: underline;
}

.custom-post .two-col-table th, .custom-post .two-col-table td {
    width: 50%;
}
@media (max-width: 600px) {
    .custom-post h1 {
        font-size: 1.5em;
    }
    .custom-post .section-card h2 {
        font-size: 1.3em;
    }
}/* End custom CSS */