.elementor-27453 .elementor-element.elementor-element-9acdd6f{--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-27453 .elementor-element.elementor-element-3cc4575 > .elementor-widget-container{padding:0px 0px 0px 0px;}/* Start custom CSS for text-editor, class: .elementor-element-3cc4575 */<style>
/* Base Reset and Global Styling */
.custom-post {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%; /* Ensure responsiveness */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Header Styling */
.custom-post header {
    background-color: #005b96;
    color: white;
    padding: 20px 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.custom-post header h1 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.8em;
}

.custom-post header p {
    margin: 0;
    font-size: 1em;
}

/* Section Styling (Card for each section) */
.custom-post section {
    margin: 15px 0; /* Add margin around sections to separate cards */
    padding: 15px 10px; /* Padding inside the card */
    border: 1px solid #eee; /* Subtle border for card effect */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Subtle shadow for card effect */
    background-color: white; /* Enforce white background for all sections/cards */
}

/* Section Headings Styling (Stylish underline) */
.custom-post h2, .custom-post h3 {
    color: #003f63;
    border-bottom: 2px solid #005b96;
    padding-bottom: 5px;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
    display: inline-block; /* To make the border-bottom only cover the text */
    width: auto;
}

.custom-post p, .custom-post ul, .custom-post ol {
    margin-bottom: 15px;
}

/* Table of Contents Styling (Special treatment inside its card) */
.custom-post #toc {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    box-shadow: none;
}

.custom-post #toc h3 {
    color: #005b96;
    border-bottom: 1px solid #005b96;
    padding-bottom: 5px;
    margin-top: 0;
}

.custom-post #toc ul {
    list-style-type: none;
    padding-left: 0;
}

.custom-post #toc ul li a {
    color: #003f63;
    text-decoration: none;
    display: block;
    padding: 3px 0;
}

.custom-post #toc ul li a:hover {
    text-decoration: underline;
}

/* Responsive Table Styling */
.custom-post .responsive-table {
    overflow-x: auto;
    margin-bottom: 15px;
    width: 100%;
}

.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    min-width: 600px;
}

.custom-post th, .custom-post td {
    border: 1px solid #ddd;
    padding: 10px;
    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;
}

/* Important Notes Box Styling */
.custom-post .important {
    background-color: #fff3cd;
    border-left: 5px solid #ffca2c;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.custom-post .important ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 0;
}

.custom-post .important p {
    margin: 0;
}

/* Button Styling */
.custom-post .cta-button {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    padding: 15px 10px;
    background-color: #005b96;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    box-sizing: border-box;
}

.custom-post .cta-button:hover {
    background-color: #003f63;
}

/* Footer Styling */
.custom-post footer {
    padding: 15px 10px;
    text-align: center;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #666;
    margin-top: 20px;
    border: none;
    box-shadow: none;
    background-color: transparent;
}

/* Utility Class for 2-column list */
.custom-post .two-col-list {
    column-count: 1;
    list-style-type: disc;
    padding-left: 20px;
}
@media (min-width: 600px) {
    .custom-post .two-col-list {
        column-count: 2;
    }
}
</style>/* End custom CSS */