.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-13185122 *//* About NPA Section Styles */
.npa-about-section {
    padding: 80px 0;
    background: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.npa-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.npa-about-header {
    text-align: center;
    margin-bottom: 60px;
}

.npa-about-main-title {
    font-size: 3rem;
    color: #1e3c72;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.npa-about-main-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    border-radius: 2px;
}

.npa-about-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.npa-about-content {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.npa-section-title {
    font-size: 1.8rem;
    color: #1e3c72;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.npa-section-title i {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}

.npa-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Values Section */
.npa-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.npa-value-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #1e3c72;
    transition: transform 0.3s ease;
}

.npa-value-item:hover {
    transform: translateY(-5px);
}

.npa-value-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 15px;
}

.npa-value-title {
    font-size: 1.3rem;
    color: #1e3c72;
    font-weight: 600;
    margin-bottom: 10px;
}

.npa-value-desc {
    color: #666;
    line-height: 1.6;
}

/* Functions Section */
.npa-functions-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.npa-function-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.npa-function-item:hover {
    background: #e9ecef;
    transform: translateX(10px);
}

.npa-function-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.npa-function-text {
    flex: 1;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .npa-about-section {
        padding: 40px 0;
    }
    
    .npa-about-main-title {
        font-size: 2.2rem;
    }
    
    .npa-about-content {
        padding: 30px 20px;
    }
    
    .npa-values-grid {
        grid-template-columns: 1fr;
    }
    
    .npa-function-item {
        flex-direction: column;
        text-align: center;
    }
    
    .npa-function-icon {
        align-self: center;
    }
}/* End custom CSS */