.elementor-28742 .elementor-element.elementor-element-1b31e62{--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-759f26d */.custom-post {
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    max-width: 100%; /* Ensures full responsiveness */
    overflow-x: hidden; /* Prevents horizontal scrollbar */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* New Card Style for each Section */
.post-card {
    background-color: #ffffff; /* White background for the card */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin: 20px 0; /* Vertical margin to separate cards, 0 horizontal margin */
    padding: 0; /* 0px left/right padding for the card container */
    overflow: hidden;
}

.custom-post h1 {
    background-color: #005b96;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.custom-post h2 {
    color: #003f63;
    border-bottom: 2px solid #005b96;
    padding: 5px 10px; /* Internal padding for header */
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.6em;
}

.custom-post h3 {
    color: #003f63;
    font-size: 1.3em;
    margin-top: 20px;
    padding: 0 10px; /* Internal padding */
}

.custom-post p {
    margin-bottom: 15px;
    padding: 0 10px; /* Internal content padding */
    text-align: justify;
}

.custom-post ul, .custom-post ol {
    margin: 15px 0;
    padding: 0 10px 0 30px; /* Internal content padding */
}

.custom-post li {
    margin-bottom: 10px;
    text-align: justify;
}

/* Responsive Table Styling */
.responsive-table {
    overflow-x: auto; /* Allows horizontal scrolling for very narrow screens */
    margin: 15px 0;
    padding: 0 10px; /* Internal content padding */
}

.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    margin-bottom: 20px;
}

.custom-post th, .custom-post td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    word-wrap: break-word; /* Wraps long text */
}

.custom-post th {
    background-color: #e2f0fb;
    color: #003f63;
    font-weight: strong;
}

/* Specific Table Styles */
.fee-table th:nth-child(3), .fee-table td:nth-child(3),
.fee-table th:nth-child(4), .fee-table td:nth-child(4) {
    text-align: right;
    white-space: nowrap; /* Keeps amounts together */
}

/* Important Box Styling */
.important {
    background-color: #fff3cd;
    border-left: 5px solid #ffca2c;
    padding: 15px;
    margin: 20px 10px; /* Internal margin */
    border-radius: 4px;
}

.important strong {
    color: #856404; /* Darker color for emphasis in the note box */
}

/* Button Styling */
.custom-post .button-link {
    display: block;
    width: fit-content;
    margin: 20px auto;
    padding: 12px 25px;
    background-color: #005b96;
    color: white !important; /* !important to override potential link styles */
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: strong;
    transition: background-color 0.3s;
}

.custom-post .button-link:hover {
    background-color: #003f63;
}

/* Table of Contents Styling */
.toc {
    border: 1px solid #ddd;
    padding: 15px 10px;
    margin: 0; /* Resetting margin inside the card */
    background-color: #f9f9f9;
    border-radius: 8px; /* Match card corner */
}

.toc h3 {
    padding: 0;
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.toc ol {
    padding-left: 20px;
    list-style-type: decimal;
}

.toc li {
    margin-bottom: 5px;
}

/* Footer Styling */
.post-footer {
    text-align: center;
    padding: 20px 10px;
    margin-top: 30px;
    border-top: 1px solid #ddd;
    background-color: #f1f1f1;
}

.post-footer a {
    color: #005b96;
    text-decoration: none;
    margin: 0 10px;
}

.post-footer a:hover {
    text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .custom-post h1 {
        font-size: 1.5em;
        padding: 15px 10px;
    }
    .custom-post h2 {
        font-size: 1.4em;
    }
    .custom-post h3 {
        font-size: 1.2em;
    }
    .custom-post th, .custom-post td {
        padding: 8px;
        font-size: 0.9em;
    }
}/* End custom CSS */