/* Start custom CSS for text-editor, class: .elementor-element-99e917e *//* ===== RESET & BASE ===== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      background-color: #f4f6f9;
      color: #2c2c2c;
      line-height: 1.8;
      font-size: 16px;
    }

    /* ===== WRAPPER ===== */
    .article-wrapper {
      max-width: 860px;
      margin: 40px auto;
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 4px 30px rgba(0,0,0,0.08);
      overflow: hidden;
    }

    /* ===== HERO HEADER ===== */
    .article-hero {
      background: linear-gradient(135deg, #1a237e 0%, #283593 40%, #1565c0 100%);
      padding: 56px 48px 44px;
      position: relative;
      overflow: hidden;
    }

    .article-hero::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 260px; height: 260px;
      background: rgba(255,255,255,0.05);
      border-radius: 50%;
    }

    .article-hero::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -40px;
      width: 320px; height: 320px;
      background: rgba(255,255,255,0.04);
      border-radius: 50%;
    }

    .article-hero .badge {
      display: inline-block;
      background: rgba(255,255,255,0.15);
      color: #e3f2fd;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 20px;
      border: 1px solid rgba(255,255,255,0.2);
    }

    .article-hero h1 {
      color: #ffffff;
      font-size: 2rem;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .article-hero .subtitle {
      color: #bbdefb;
      font-size: 1rem;
      line-height: 1.7;
      max-width: 680px;
      position: relative;
      z-index: 1;
    }

    .article-hero .meta {
      margin-top: 24px;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .article-hero .meta span {
      color: #90caf9;
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* ===== BODY CONTENT ===== */
    .article-body {
      padding: 48px 48px 56px;
    }

    /* ===== PART DIVIDERS ===== */
    .part-divider {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 48px 0 32px;
    }

    .part-divider .part-number {
      background: linear-gradient(135deg, #1565c0, #1e88e5);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 8px 18px;
      border-radius: 20px;
      white-space: nowrap;
    }

    .part-divider .part-line {
      flex: 1;
      height: 2px;
      background: linear-gradient(to right, #1e88e5, transparent);
      border-radius: 2px;
    }

    /* ===== HEADINGS ===== */
    h2 {
      font-size: 1.5rem;
      font-weight: 800;
      color: #1a237e;
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 3px solid #e3f2fd;
    }

    h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #1565c0;
      margin: 32px 0 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    h3::before {
      content: '';
      display: inline-block;
      width: 4px;
      height: 20px;
      background: linear-gradient(to bottom, #1565c0, #42a5f5);
      border-radius: 2px;
      flex-shrink: 0;
    }

    /* ===== PARAGRAPHS ===== */
    p {
      color: #37474f;
      margin-bottom: 16px;
      line-height: 1.85;
    }

    /* ===== HIGHLIGHT BOX (intro) ===== */
    .intro-box {
      background: linear-gradient(135deg, #e3f2fd, #f0f7ff);
      border-left: 5px solid #1e88e5;
      border-radius: 0 12px 12px 0;
      padding: 22px 26px;
      margin-bottom: 36px;
      font-style: italic;
      color: #1a237e;
      font-size: 1.05rem;
    }

    /* ===== ALERT BOXES ===== */
    .alert {
      border-radius: 12px;
      padding: 20px 24px;
      margin: 24px 0;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .alert-icon {
      font-size: 1.6rem;
      flex-shrink: 0;
      line-height: 1;
      margin-top: 2px;
    }

    .alert-content {
      flex: 1;
    }

    .alert-content strong {
      display: block;
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .alert-content p {
      margin: 0;
      font-size: 0.92rem;
      line-height: 1.7;
    }

    .alert-danger {
      background: #fff3f3;
      border: 1px solid #ffcdd2;
    }
    .alert-danger strong { color: #c62828; }
    .alert-danger p { color: #6d2525; }

    .alert-warning {
      background: #fffde7;
      border: 1px solid #fff176;
    }
    .alert-warning strong { color: #f57f17; }
    .alert-warning p { color: #5d4037; }

    .alert-success {
      background: #f1f8e9;
      border: 1px solid #c5e1a5;
    }
    .alert-success strong { color: #2e7d32; }
    .alert-success p { color: #1b5e20; }

    .alert-info {
      background: #e3f2fd;
      border: 1px solid #90caf9;
    }
    .alert-info strong { color: #0d47a1; }
    .alert-info p { color: #1a237e; }

    /* ===== STAT CARDS ===== */
    .stat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 16px;
      margin: 28px 0;
    }

    .stat-card {
      background: linear-gradient(135deg, #f5f7ff, #eef2ff);
      border: 1px solid #c5cae9;
      border-radius: 12px;
      padding: 22px 18px;
      text-align: center;
    }

    .stat-card .stat-number {
      font-size: 2rem;
      font-weight: 800;
      color: #1565c0;
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-card .stat-label {
      font-size: 0.82rem;
      color: #5c6bc0;
      line-height: 1.4;
      font-weight: 500;
    }

    /* ===== COMPARISON TABLE (IB vs A-Level) ===== */
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      margin: 24px 0 32px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    }

    .compare-table thead tr {
      background: linear-gradient(135deg, #1565c0, #1e88e5);
    }

    .compare-table thead th {
      color: #fff;
      padding: 16px 20px;
      text-align: left;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .compare-table thead th:first-child {
      width: 36%;
    }

    .compare-table tbody tr:nth-child(even) {
      background: #f5f8ff;
    }

    .compare-table tbody tr:nth-child(odd) {
      background: #ffffff;
    }

    .compare-table tbody tr:hover {
      background: #e8f0fe;
      transition: background 0.2s;
    }

    .compare-table tbody td {
      padding: 14px 20px;
      font-size: 0.88rem;
      color: #37474f;
      border-bottom: 1px solid #e8eaf6;
      vertical-align: top;
    }

    .compare-table tbody td:first-child {
      font-weight: 700;
      color: #1a237e;
      background: rgba(232,240,254,0.4);
    }

    /* ===== STEPS (4 пути) ===== */
    .steps-list {
      list-style: none;
      margin: 24px 0;
      counter-reset: step-counter;
    }

    .steps-list li {
      counter-increment: step-counter;
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 18px 22px;
      margin-bottom: 12px;
      background: #fafbff;
      border: 1px solid #e8eaf6;
      border-radius: 12px;
      transition: box-shadow 0.2s;
    }

    .steps-list li:hover {
      box-shadow: 0 4px 16px rgba(21,101,192,0.1);
    }

    .steps-list li::before {
      content: counter(step-counter);
      background: linear-gradient(135deg, #1565c0, #42a5f5);
      color: #fff;
      font-weight: 800;
      font-size: 1rem;
      min-width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .steps-list li span {
      color: #37474f;
      font-size: 0.93rem;
      line-height: 1.7;
      padding-top: 6px;
    }

    /* ===== ACTION PLAN TABLE ===== */
    .plan-table {
      width: 100%;
      border-collapse: collapse;
      margin: 28px 0;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    }

    .plan-table thead tr {
      background: linear-gradient(135deg, #1a237e, #283593);
    }

    .plan-table thead th {
      color: #ffffff;
      padding: 16px 18px;
      text-align: left;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .plan-table tbody tr:nth-child(odd) { background: #ffffff; }
    .plan-table tbody tr:nth-child(even) { background: #f5f8ff; }
    .plan-table tbody tr:hover { background: #e8f0fe; }

    .plan-table tbody td {
      padding: 14px 18px;
      font-size: 0.88rem;
      color: #37474f;
      border-bottom: 1px solid #e8eaf6;
      vertical-align: middle;
    }

    .plan-table tbody td:first-child {
      width: 52px;
      text-align: center;
    }

    .step-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      background: linear-gradient(135deg, #1565c0, #42a5f5);
      color: #fff;
      border-radius: 50%;
      font-weight: 800;
      font-size: 0.85rem;
    }

    .plan-table .timing {
      font-weight: 700;
      color: #1565c0;
      white-space: nowrap;
    }

    /* ===== CONCLUSION BOX ===== */
    .conclusion-box {
      background: linear-gradient(135deg, #1a237e 0%, #1565c0 100%);
      border-radius: 16px;
      padding: 36px 40px;
      margin-top: 48px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .conclusion-box::before {
      content: '🌍';
      position: absolute;
      right: 32px;
      top: 28px;
      font-size: 5rem;
      opacity: 0.12;
    }

    .conclusion-box h2 {
      color: #ffffff;
      border-bottom: 2px solid rgba(255,255,255,0.2);
      font-size: 1.3rem;
      margin-bottom: 18px;
      padding-bottom: 14px;
    }

    .conclusion-box p {
      color: #bbdefb;
      font-size: 0.97rem;
      margin-bottom: 14px;
    }

    .conclusion-box p:last-child {
      color: #ffffff;
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 0;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 640px) {
      .article-hero { padding: 36px 24px 32px; }
      .article-hero h1 { font-size: 1.5rem; }
      .article-body { padding: 32px 20px 40px; }
      .stat-grid { grid-template-columns: repeat(2, 1fr); }
      .compare-table, .plan-table { font-size: 0.8rem; }
      .compare-table thead th, .plan-table thead th,
      .compare-table tbody td, .plan-table tbody td { padding: 10px 12px; }
      .conclusion-box { padding: 28px 24px; }
    }/* End custom CSS */