.elementor-32347 .elementor-element.elementor-element-df77bcc{--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-297b6d6 *//*
 * Custom Post CSS: Fully Responsive, Clean, and Mobile-Friendly
 * Ensures left and right margin/padding are 0px for the card structure.
 */

.custom-post {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Card Styling for Sections */
.custom-post .card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin: 15px 0px; /* Top/Bottom margin 15px, Left/Right margin 0px */
    padding: 20px;
    border: 1px solid #eee;
}

/* Section Headings */
.custom-post h1 {
    color: #1a1a1a;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.custom-post h2, .custom-post h3, .custom-post h4 {
    color: #003f63; /* Section headings color */
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 8px;
    margin-top: 25px;
    font-size: 1.4em;
}

/* Paragraphs and Lists */
.custom-post p, .custom-post ul, .custom-post ol {
    margin-bottom: 15px;
    padding: 0;
}
.custom-post ul, .custom-post ol {
    padding-left: 20px;
}

/* Table of Contents (TOC) Styling */
.custom-post .toc {
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
}
.custom-post .toc h3 {
    color: #003f63;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-top: 0;
}
.custom-post .toc ul {
    list-style: none;
    padding-left: 0;
}
.custom-post .toc li a {
    color: #337ab7;
    text-decoration: none;
    display: block;
    padding: 3px 0;
}
.custom-post .toc li a:hover {
    text-decoration: underline;
}

/* Responsive Table Wrapper */
.custom-post .responsive-table {
    overflow-x: auto;
    margin-bottom: 20px;
}

/* Table Styling */
.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    min-width: 300px; /* Ensure readability on small screens */
}
.custom-post th, .custom-post td {
    padding: 12px 10px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
    word-break: break-word;
}
.custom-post th {
    background-color: #e2f0fb; /* Table headers color */
    color: #003f63;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
}
.custom-post tr:nth-child(even) {
    background-color: #f7f7f7;
}

/* Important Notes Box */
.custom-post .important {
    background-color: #fff3cd; /* Notes box background */
    border-left: 5px solid #ffca2c; /* Notes box border-left */
    padding: 15px;
    margin: 20px 0;
    color: #664d03;
    border-radius: 4px;
}
.custom-post .important strong {
    color: #664d03;
}

/* Call-to-Action Button */
.custom-post .cta-button-container {
    text-align: center;
    margin: 25px 0;
}
.custom-post .cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #003f63;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}
.custom-post .cta-button:hover {
    background-color: #005689;
}

/* Footer Links */
.custom-post .footer-links {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
    text-align: center;
}
.custom-post .footer-links a {
    margin: 0 10px;
    color: #003f63;
    text-decoration: none;
}
.custom-post .footer-links a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
    .custom-post .card {
        padding: 15px;
    }
    .custom-post h1 {
        font-size: 1.5em;
    }
    .custom-post h2, .custom-post h3 {
        font-size: 1.2em;
    }
    .custom-post th, .custom-post td {
        padding: 8px 6px;
    }
    .custom-post .cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}/* End custom CSS */