.elementor-29245 .elementor-element.elementor-element-f25adbc{--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-c7066da */.custom-post {
    margin: 0;
    padding: 0;
    max-width: 100%;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.custom-post * {
    box-sizing: border-box;
}

/* Header Banner - kept outside the card structure for full-width color */
.custom-post h1 {
    background-color: #005b96;
    color: white;
    padding: 15px 20px;
    margin: 0;
    border-radius: 0; /* Removing border radius to connect with the first card */
    font-size: 1.5em;
    text-align: center;
}

/* New Card Styles */
.section-card {
    background-color: white;
    margin: 10px 0; /* 0 margin left/right, 10px vertical margin for separation */
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Subtle shadow for card effect */
    width: 100%;
}

.card-content {
    padding: 15px 20px; /* Internal padding for all card content */
}

/* Resetting default styles applied to elements, now managed by .card-content padding */
.custom-post h2, .custom-post h3, .custom-post h4 {
    color: #003f63;
    border-bottom: 2px solid #e2f0fb;
    padding-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 15px;
    padding-left: 0; /* Removed initial padding, now handled by card-content */
}

.custom-post h2 { font-size: 1.4em; }
.custom-post h3 { font-size: 1.2em; }
.custom-post h4 { font-size: 1.1em; }

.custom-post p {
    margin-bottom: 15px;
    padding: 0; /* Removed padding, now handled by card-content */
    text-align: justify;
}

.custom-post ul, .custom-post ol {
    margin: 0 0 15px 20px; /* Adjusted left margin for better alignment inside the card */
    padding: 0;
}

.custom-post ul li, .custom-post ol li {
    margin-bottom: 8px;
    text-align: justify;
}

/* Table container styling adjustment */
.responsive-table {
    overflow-x: auto;
    width: 100%;
    margin: 15px 0;
    padding: 0; /* Removed padding, now handled by card-content */
}

.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.custom-post th, .custom-post td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
    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 Box Styling */
.custom-post .important {
    margin: 20px 0; /* Adjusted margin for full card width */
    padding: 15px;
    background-color: #fff3cd;
    border-left: 5px solid #ffca2c;
    color: #664d03;
    border-radius: 4px;
}

.custom-post .important h4 {
    color: #664d03;
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.custom-post .button-link {
    display: block;
    width: fit-content;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #005b96;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.custom-post .button-link:hover {
    background-color: #003f63;
}

.custom-post .footer-links {
    margin-top: 0;
    padding: 15px 0; /* Padding is now part of card-content */
    border-top: 1px solid #ddd;
    text-align: center;
}

@media (max-width: 600px) {
    .custom-post h1 { font-size: 1.3em; }
    .custom-post h2 { font-size: 1.2em; }
    .custom-post th, .custom-post td { padding: 8px; }
    .card-content { padding: 10px 15px; }
    .custom-post h2, .custom-post h3 { padding-left: 0; }
}/* End custom CSS */