.elementor-27926 .elementor-element.elementor-element-7b26c01{--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-27926 .elementor-element.elementor-element-2f4d195 > .elementor-widget-container{padding:0px 0px 0px 0px;}/* Start custom CSS for text-editor, class: .elementor-element-2f4d195 */<style>
/* Base Reset and Container Styling */
.custom-post {
    max-width: 100%;
    overflow-x: hidden; /* Prevents horizontal scrollbars on the main container */
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8; /* Light background for the overall page/container */
}

/* Card Styling for Sections AND Ads */
.custom-post .section-card,
.custom-post .ad-card {
    background-color: white;
    padding: 20px;
    margin: 20px 0; /* 0px left/right margin as requested */
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    word-wrap: break-word; /* Ensure long words wrap */
}

/* Ad Card Specific Styling */
.custom-post .ad-card {
    text-align: center;
    border-color: #eeeee; /* Lighter color for the ad border */
    background-color: #ffffff; /* Very light yellow for ad background */
}
.custom-post .ad-card p {
    margin: 0;
    font-size: 0.8em;
    color: #888;
}

/* Header Styling */
.custom-post header {
    background-color: #005b96; /* Header background color */
    color: white;
    padding: 30px 20px;
    border-radius: 8px 8px 0 0; /* Corner round for the header */
    margin-bottom: 20px;
}

.custom-post header h1 {
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 5px;
    line-height: 1.2;
}

.custom-post header p {
    font-size: 1em;
    margin: 0;
    opacity: 0.9;
}

/* Section Heading Styling */
.custom-post h2,
.custom-post h3 {
    color: #003f63; /* Section headings color */
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    margin-top: 0; /* Reset margin inside card */
    margin-bottom: 20px;
}

/* Table Styling */
.custom-post .responsive-table {
    overflow-x: auto; /* Ensures table is responsive for small screens */
    margin: 15px 0;
}

.custom-post table {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    min-width: 600px; /* Minimum width to prevent excessive squishing on mobile */
}

.custom-post th,
.custom-post td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
    vertical-align: top;
    word-wrap: break-word; /* Wrap long text naturally */
}

.custom-post th {
    background-color: #e2f0fb; /* Table headers color */
    color: #003f63;
    font-weight: bold;
}

.custom-post tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* List Styling */
.custom-post ul,
.custom-post ol {
    padding-left: 20px;
    margin: 15px 0;
}

.custom-post li {
    margin-bottom: 10px;
}

/* Important Notes Box Styling */
.custom-post .important {
    background-color: #fff3cd; /* Notes box background */
    border-left: 5px solid #ffca2c; /* Notes box border-left */
    padding: 15px;
    margin-top: 20px;
    color: #664d03;
    font-weight: bold;
    border-radius: 4px;
}

/* Call-to-Action (CTA) Button Styling */
.custom-post .cta-button {
    display: block;
    width: fit-content;
    margin: 20px 0;
    padding: 15px 25px;
    background-color: #ff4500; /* Orange color for high visibility */
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.custom-post .cta-button:hover {
    background-color: #cc3700;
}

/* Responsiveness adjustments */
@media screen and (max-width: 600px) {
    .custom-post header h1 {
        font-size: 1.5em;
    }

    .custom-post .section-card,
    .custom-post .ad-card {
        padding: 15px;
    }

    .custom-post table {
        min-width: 100%; /* Allows table to scale down on small screens, the overflow-x handles the rest */
    }
}
</style>/* End custom CSS */