.elementor-29803 .elementor-element.elementor-element-a8d7de8{--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-ea021c8 */.custom-post {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
    box-sizing: border-box;
    /* Main container is responsive and has 0 margin/padding as requested */
}

.custom-post * {
    box-sizing: border-box;
}

/* Card Section Styling */
.card-section {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0; /* Vertical margin for separation, 0 horizontal margin as requested */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden; /* Ensures child elements (like floats) are contained */
}

/* Special styling for the main header (H1) card */
.card-section.header-card h1 {
    background-color: #005b96;
    color: white;
    padding: 15px 20px; /* Adjust padding to look good inside the card */
    margin: -20px -20px 20px -20px; /* Overlap H1 over card padding for a full-width header look */
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    text-align: center;
    font-size: 1.8em;
}

.custom-post h2 {
    color: #003f63;
    margin-top: 5px; /* Reduced margin since H2 is inside a card with padding */
    padding-bottom: 5px;
    border-bottom: 2px solid #e2f0fb;
    font-size: 1.5em;
}

.custom-post h3 {
    color: #003f63;
    margin-top: 20px;
    font-size: 1.2em;
}

.custom-post p {
    margin-bottom: 15px;
    text-align: justify;
}

.custom-post .responsive-table {
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    min-width: 600px;
}

.custom-post th, .custom-post td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    word-wrap: break-word;
}

.custom-post th {
    background-color: #e2f0fb;
    color: #003f63;
    font-weight: bold;
}

.custom-post tr:nth-child(even) {
    background-color: #f9f9f9;
}

.custom-post .two-col-table th, .custom-post .two-col-table td {
    width: 50%;
}

.custom-post ul, .custom-post ol {
    margin: 0 0 15px 20px;
    padding: 0;
}

.custom-post li {
    margin-bottom: 8px;
    text-align: justify;
}

.custom-post .important {
    border-left: 5px solid #ffca2c;
    background-color: #fff3cd;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    color: #856404;
}

.custom-post .important p {
    margin: 0;
}

.custom-post .toc {
    /* Reset TOC styling as it will be inside a card */
    border: none;
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
}

.custom-post .toc h2 {
    margin-top: 0;
}

.custom-post .toc ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    columns: 1;
}

.custom-post .toc li a {
    color: #005b96;
    text-decoration: none;
}

.custom-post .toc li a:hover {
    text-decoration: underline;
}

.custom-post .button-link {
    display: block;
    width: auto;
    text-align: center;
    background-color: #005b96;
    color: white;
    padding: 12px 20px;
    margin: 20px 0;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: bold;
}

.custom-post .button-link:hover {
    background-color: #003f63;
}

/* Specific styling for smaller screens */
@media (max-width: 768px) {
    .card-section.header-card h1 {
        font-size: 1.5em;
        padding: 15px;
    }

    .custom-post h2 {
        font-size: 1.3em;
    }

    .custom-post .toc ul {
        columns: 1;
    }

    /* Allow the table to scroll horizontally on small screens */
    .custom-post table {
        min-width: 100%;
        display: table;
    }
}/* End custom CSS */