.elementor-1218 .elementor-element.elementor-element-708b0c0a{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.pp-tooltip.pp-tooltip-{{ID}} .pp-tooltip-content{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.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-3ac65fa8 */.ndp-section {
    padding-top: 40px; /* Add some top padding as it's a new main section */
    border-top: 1px solid #eee; /* Visual separator from content above */
}

.ndp-intro {
    margin-bottom: 30px;
}

.ndp-intro p {
    font-size: 1.1em;
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
}

.investment-breakdown {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f7fbf8; /* Light background for investment breakdown */
    border: 1px solid #e0e7e3;
    border-radius: 8px;
    padding: 20px;
        margin-top: 20px;
}

.investment-breakdown li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1em;
    color: #444;
}

.investment-breakdown li:last-child {
    margin-bottom: 0;
}

.investment-breakdown li i {
    color: #0a3d62; /* Green for icons */
    margin-right: 10px;
    font-size: 1.2em;
    width: 25px; /* Fixed width for icon alignment */
    text-align: center;
}

.approval-details {
    background-color: #e0f2f7; /* Light blue background for approval */
    border-left: 5px solid #b47141; /* Blue accent border */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.approval-details i {
    font-size: 1.8em;
    color: #b47141; /* Blue icon color */
    margin-right: 10px
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.approval-details p {
    margin: 0;
    font-size: 1em;
    color: #444;
}

/* NDP Objectives */
.ndp-objectives {
    margin-bottom: 40px;
}

.objective-intro-text {
    font-size: 1.1em;
    text-align: left;
    margin-bottom: 20px;
    color: #666;
}
.investment-breakdown li div{
    margin-right: 10px;
}

.objective-list-ndp {
    list-style: none;
    padding: 0;
    margin: 0;
}

.objective-list-ndp li {
    display: flex;
    align-items: flex-start; /* Align icon to the top of text */
    margin-bottom: 15px;
    background-color: #fcfcfc;
    padding: 15px 20px;
    border-left: 4px solid #0a3d62; /* Green accent border */
    border-radius: 6px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
    font-size: 1.1em;
    color: #444;
}

.objective-list-ndp li i {
    color: #0a3d62; /* Green icon color */
    margin-right: 15px;
    font-size: 1.5em;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.objective-pursuit {
    font-size: 0.95em;
    color: #777;
    text-align: justify;
    margin-top: 25px;
    padding: 10px 15px;
    border-top: 1px dashed #eee;
}

/* Project Area */
.project-area {
    margin-bottom: 40px;
}

.project-area p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.states-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid; /* Use CSS Grid for multi-column layout */
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Responsive columns */
    gap: 10px;
    background-color: #fcfdff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e7e3;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
}

.states-list li {
    background-color: #eaf2f6; /* Light blueish background for each state */
    padding: 10px 15px;
    border-radius: 5px;
    color: #2c3e50;
    font-weight: bold;
    font-size: 0.95em;
    text-align: center;
    transition: background-color 0.2s ease;
}

.states-list li:hover {
    background-color: #dbeaf0;
}

.project-area .note {
    font-size: 0.9em;
    color: #888;
    text-align: center;
    margin-top: 20px;
}

/* --- Responsive Adjustments for new sections --- */
@media (max-width: 768px) {
    .ndp-section {
        padding-top: 30px;
    }

    .approval-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .approval-details i {
        margin-bottom: 5px;
    }

    .states-list {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* More columns for small devices */
        gap: 8px;
        padding: 15px;
    }

    .states-list li {
        font-size: 0.9em;
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .ndp-section {
        padding-top: 20px;
    }

    .ndp-intro p, .approval-details p, .objective-intro-text, .objective-list-ndp li, .project-area p {
        font-size: 1em;
    }

    .investment-breakdown li {
        font-size: 0.95em;
    }

    .states-list {
        grid-template-columns: 1fr; /* Stack states vertically on very small screens */
        padding: 10px;
    }
}/* End custom CSS */