.elementor-31475 .elementor-element.elementor-element-5d23e27{--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-d4d022d */.custom-post {
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Card for each section */
.section-card {
    background-color: white; /* Explicit white background */
    margin: 15px 0; /* Vertical margin to separate cards */
    padding: 15px 20px; /* Internal padding for content */
    border-radius: 8px; /* Corner roundness for card look */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow for definition */
    box-sizing: border-box;
    width: 100%;
}

.custom-post h1 {
    background-color: #005b96;
    color: white;
    padding: 15px 20px;
    margin: 0 0 15px 0; /* Bottom margin for separation from first card */
    border-radius: 8px;
    font-size: 1.8em;
    text-align: center;
}

.custom-post h2 {
    background-color: #003f63;
    color: white;
    padding: 12px 15px;
    margin: 0 0 10px 0; /* Reduced top margin as it's inside a card */
    font-size: 1.5em;
    border-radius: 4px;
}

.custom-post h3 {
    color: #003f63;
    border-bottom: 2px solid #005b96;
    padding-bottom: 5px;
    margin-top: 15px;
    font-size: 1.2em;
}

.custom-post p, .custom-post ul, .custom-post ol, .custom-post table {
    margin: 10px 0;
}

/* Button Styling */
.custom-post .action-button {
    display: block;
    width: 90%;
    max-width: 350px;
    margin: 20px auto;
    padding: 10px 15px;
    text-align: center;
    background-color: #005b96;
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.custom-post .action-button:hover {
    background-color: #003f63;
}

/* Table of Contents */
.custom-post #toc {
    border: 1px solid #ccc;
    padding: 15px;
    margin: 0; /* Remove internal margin to use card padding */
    background-color: #f9f9f9;
    border-radius: 5px;
}

.custom-post #toc h3 {
    margin-top: 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.custom-post #toc ul {
    list-style: none;
    padding: 0;
    margin: 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;
}

/* Responsive Table Styling */
.custom-post .responsive-table {
    overflow-x: auto;
    margin: 15px 0;
    -webkit-overflow-scrolling: touch;
}

.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.custom-post th, .custom-post td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
    word-wrap: break-word; 
}

.custom-post th {
    background-color: #e2f0fb;
    color: #003f63;
    font-weight: bold;
}

.custom-post tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Important Notes Box */
.custom-post .important {
    background-color: #fff3cd;
    border-left: 5px solid #ffca2c;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.custom-post .important h3 {
    color: #856404;
    border-bottom: none;
    margin-top: 0;
}

/* Footer Styling */
.custom-post .post-footer {
    border-top: 2px solid #005b96;
    padding-top: 15px;
    margin-top: 0; /* Removed margin as it's inside a card */
    text-align: center;
}

.custom-post .post-footer a {
    color: #005b96;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}/* End custom CSS */