.elementor-32362 .elementor-element.elementor-element-43a0af6{--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-41453df */.custom-post {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scroll on main container */
}

/* Card Styling for Sections - This is what creates the separate white cards */
.custom-post > section, .custom-post > div {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px; /* Space between cards */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Headings Styling */
.custom-post h2,
.custom-post h3,
.custom-post h4 {
    color: #003f63; /* Section headings color */
    margin-top: 0;
    padding-bottom: 5px;
    border-bottom: 2px solid #f0f0f0;
}

.custom-post h2 {
    font-size: 1.8em;
}

.custom-post h3 {
    font-size: 1.5em;
}

.custom-post h4 {
    font-size: 1.2em;
}

/* Table Styling */
.custom-post .responsive-table {
    overflow-x: auto;
    margin-bottom: 15px;
}

.custom-post .responsive-table table {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    margin: 0;
}

.custom-post .responsive-table th,
.custom-post .responsive-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    word-wrap: break-word; /* Wrap long text naturally */
    min-width: 100px; /* Ensure columns have minimum width for small screens */
}

.custom-post .responsive-table th {
    background-color: #e2f0fb; /* Table headers color */
    color: #003f63;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
}

/* Important Notes Box */
.custom-post .important {
    background-color: #fff3cd; /* Notes box background */
    border-left: 5px solid #ffca2c; /* Notes box border-left */
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
    color: #664d03;
}

.custom-post .important h4 {
    color: #664d03;
    margin-top: 0;
    border: none;
    padding: 0;
}

/* Lists Styling */
.custom-post ul,
.custom-post ol {
    padding-left: 25px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.custom-post li {
    margin-bottom: 8px;
}

/* Call to Action Button */
.custom-post .cta-button-container {
    text-align: center;
    margin: 20px 0;
}

.custom-post .cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #003f63;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
}

.custom-post .cta-button:hover {
    background-color: #002d4a;
}

/* Table of Contents Styling */
.custom-post .table-of-contents {
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px dashed #ccc;
}

.custom-post .table-of-contents h3 {
    color: #003f63;
    margin-top: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
}

.custom-post .table-of-contents ul {
    list-style: disc;
    padding-left: 20px;
}

.custom-post .table-of-contents li {
    margin-bottom: 5px;
}

.custom-post .table-of-contents a {
    color: #333;
    text-decoration: none;
}

.custom-post .table-of-contents a:hover {
    text-decoration: underline;
    color: #003f63;
}/* End custom CSS */