.elementor-1382 .elementor-element.elementor-element-da829d6{--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;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1382 .elementor-element.elementor-element-6ff05be{--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;}.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-d7d601b */<style>
  section {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    line-height: 1.6;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }

  section h1 {
    font-size: 28px;
    color: #1a73e8;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
  }

  section h2 {
    font-size: 22px;
    color: #444;
    border-left: 5px solid #1a73e8;
    padding-left: 10px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  section p {
    font-size: 16px;
    margin-bottom: 15px;
  }

  section ul {
    padding-left: 20px;
    margin-bottom: 15px;
  }

  section ul li {
    margin-bottom: 8px;
    font-size: 15px;
  }

  a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 600;
  }

  a:hover {
    text-decoration: underline;
  }

  hr {
    border: 0;
    border-top: 1px dashed #ccc;
    margin: 30px 0;
  }

  strong {
    font-weight: 600;
    color: #111;
  }

  /* Highlighted section for English teacher */
  h2[style*="color:#007BFF"] {
    background: #e6f0ff;
    padding: 10px;
    border-radius: 8px;
  }

  p[style*="font-size: 18px"] {
    color: #1a1a1a;
    font-weight: 600;
  }

  p[style*="color: #28a745"] {
    background: #eaffea;
    padding: 10px;
    border-left: 5px solid #28a745;
    border-radius: 5px;
  }

  /* Last call to action */
  p[style*="font-weight: bold"] {
    background: #fff4e5;
    padding: 10px;
    border-left: 5px solid #ff9800;
    border-radius: 5px;
  }
</style>/* End custom CSS */
/* Start custom CSS *//* Base Styling */
section {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Segoe UI", sans-serif;
  line-height: 1.7;
  color: #333;
  background: #fff;
}

/* Headings */
h1, h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

/* Paragraphs */
p {
  font-size: 17px;
  margin-bottom: 15px;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

ul, ol {
  padding-left: 25px;
  margin-bottom: 20px;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

ul li, ol li {
  margin-bottom: 8px;
}

/* WhatsApp Button */
a[href*="wa.me"] {
  transition: transform 0.3s ease, background-color 0.3s ease;
}
a[href*="wa.me"]:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
  section {
    padding: 15px;
  }
  p, ul, ol {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 10px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 22px;
  }
  p, li {
    font-size: 15.5px;
  }
}

/* Animation: Fade Up */
@keyframes fadeUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

h1, h2, p, ul, ol {
  animation-delay: 0.1s;
}/* End custom CSS */