.elementor-33417 .elementor-element.elementor-element-41c4367f{margin-top:-10px;margin-bottom:0px;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );}.elementor-33417 .elementor-element.elementor-element-3c9030c{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{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-33417 .elementor-element.elementor-element-156de366{margin-top:-15px;margin-bottom:0px;}.elementor-33417 .elementor-element.elementor-element-db0a2f2{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}/* Start custom CSS for text-editor, class: .elementor-element-65e63f8 *//* --- CONTAINER & TYPOGRAPHY --- */
.nlp-section {
  max-width: 1000px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  padding: 0 20px; /* Added padding for mobile edges */
}

.nlp-section h1 {
  text-align: center;
  color: #21406b;
  margin: 0 0 8px;
}

.nlp-sub-headline {
  text-align: center;
  font-size: 18px;
  margin: 0 0 18px;
  color: #555;
}

.nlp-section h2 {
  color: #21406b;
  margin: 24px 0 10px;
}

/* --- GRID SYSTEM (What You'll Learn) --- */
.nlp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.nlp-card {
  padding: 12px;
  border: 1px solid #e6f2ea;
  border-radius: 10px;
  background: #f9fdf9;
  display: flex;
  align-items: flex-start;
}

.nlp-check {
  color: #28a745;
  font-weight: bold;
  margin-right: 8px;
}

/* --- ACCORDION STYLING --- */
.nlp-acc details {
  border: 1px solid #21406B;
  border-radius: 12px;
  background: #f7faff;
  margin: 10px 0;
  overflow: hidden;
}

.nlp-acc summary {
  list-style: none;
  cursor: pointer;
  background: #21406B;
  color: #fff;
  padding: 14px 18px;
  font-weight: 600;
  position: relative;
}

/* Hide default arrow */
.nlp-acc summary::-webkit-details-marker {
  display: none;
}

/* Custom Plus Icon */
.nlp-acc summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #fff;
}

/* Minus Icon when open */
.nlp-acc details[open] summary::after {
  content: "–";
}

.nlp-acc .panel {
  padding: 16px 18px 18px;
  background: #fff;
}

.nlp-acc ul {
  margin: 0;
  padding-left: 18px;
}

.nlp-acc li {
  margin: 6px 0;
}

.nlp-acc summary:hover {
  background: #1b365a;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 640px) {
  .nlp-grid {
    grid-template-columns: 1fr; /* Stack grid on mobile */
  }
  .nlp-acc .panel {
    padding: 14px 16px 16px;
  }
}/* End custom CSS */