    /* ===================== Global ===================== */
    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      background: #f9f9f9;
      color: #333;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    h2 {
      color: #ff7675
    }

    .container {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
    }

    /* ===================== Hero Split ===================== */
    .hero-header {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 12px;
    }

    .logo-box {
      background: #fff;
      padding: 8px;
      border-radius: 8px;
      display: flex;
      box-shadow: 0 1px 4px rgba(44, 62, 80, 0.09);
    }

    .hero-logo {
      width: 120px;
      height: 120px;
      object-fit: fill;
    }

    .title-buttons {
      display: flex;
      flex-direction: column;
      gap: 7px;
      flex: 1;
    }

    .title-buttons h1 {
      font-size: 24px;
      font-weight: bold;
      margin: 0;
      line-height: 1.3;
    }

    .hero-buttons {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }

    .hero-split {
      background: linear-gradient(135deg, #f8c291, #ff7675);
      color: #fff;
      padding: 30px 20px;
      border-radius: 8px;
    }

    .hero-split .container {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
    }

    /* Left Section */
    .hero-left {
      flex: 1 1 620px;
      max-width: 650px;
    }

    .hero-left p {
      font-size: 14px;
      margin: 8px 0 15px;
      opacity: 0.9;
    }

    .cta-primary {
      background: linear-gradient(180deg, #ff9b6b, #ff6a3d);
      color: #fff;
      padding: 10px 18px;
      border-radius: 9999px;
      border: none;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 6px 14px rgba(255, 106, 61, 0.28);
      transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease;
    }

    .cta-primary:hover {
      filter: brightness(1.03);
      box-shadow: 0 8px 18px rgba(255, 106, 61, 0.35);
      transform: translateY(-1px);
    }

    .cta-primary:active {
      transform: translateY(0);
      filter: brightness(0.98);
    }

    .cta-primary:focus-visible {
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6), 0 0 0 5px rgba(255, 106, 61, 0.6);
    }

    .cta-secondary {
      background: rgba(255, 255, 255, 0.12);
      color: #1f2937;
      border: 1px solid rgba(0, 0, 0, 0.35);
      padding: 10px 16px;
      border-radius: 9999px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    }

    /* Right Section */
    .hero-right {
      text-align: center;
      flex: 0 0 300px;
      min-width: 260px;
      margin-left: auto;
    }

    .rating {
      margin-bottom: 12px;
    }

    .rating-score {
      font-size: 2rem;
      font-weight: bold;
      color: #fff;
      vertical-align: middle;
      margin-right: 6px;
    }

    .stars {
      font-size: 1.25rem;
      vertical-align: middle;
    }

    .star {
      color: #ffbe0b;
    }

    .review-count {
      display: block;
      margin-top: 2px;
      color: #fff;
      font-size: 1rem;
      text-decoration: underline;
      font-weight: 500;
      cursor: pointer;
    }

    .cta-secondary-right {
      width: 100%;
      margin: 8px 0 0 0;
      background: rgba(255, 255, 255, 0.10);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.45);
      border-radius: 9999px;
      padding: 10px 16px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .cta-secondary:hover {
      background: rgba(0, 0, 0, 0.06);
      transform: translateY(-1px);
    }

    .cta-secondary:active {
      transform: translateY(0);
    }

    .cta-secondary:focus-visible {
      outline: none;
      box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08), 0 0 0 5px rgba(0, 0, 0, 0.18);
    }

    /* Courses Table */
    .course-table {
      width: 100%;
      border-collapse: collapse;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      margin-bottom: 40px;
    }

    .course-table thead {
      background: #ff7675;
      color: #fff;
    }

    .course-table th,
    .course-table td {
      padding: 15px;
      text-align: left;
    }

    .course-table tbody tr:nth-child(even) {
      background: #fff5f5;
    }

    .course-table tbody tr:hover {
      background: #ffe6e6;
      transform: translateX(2px);
      transition: 0.3s;
    }

    .enroll-btn {
      background: linear-gradient(180deg, var(--primary), #ff6a69);
      color: #fff;
      padding: 10px 20px;
      border: none;
      border-radius: 9999px;
      cursor: pointer;
      font-weight: 700;
      box-shadow: 0 6px 16px rgba(255, 118, 117, 0.28);
      transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .enroll-btn:hover {
      background: #f55c5c;
      transform: translateY(-1px);
      box-shadow: 0 10px 22px rgba(255, 118, 117, 0.35);
    }

    .enroll-btn:active {
      transform: translateY(0);
    }

    /* Reviews Section */
    .reviews-section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto;
      font-family: 'Poppins', sans-serif;
    }

    .reviews-section h2 {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 40px;
      color: #ff6b6b;
    }

    /* Grid */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    /* Review Card */
    .review-card {
      background: #fff;
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .review-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }

    /* Review Header */
    .review-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .reviewer-img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 15px;
      object-fit: cover;
    }

    .reviewer-info {
      display: flex;
      flex-direction: column;
    }

    .reviewer-name {
      font-weight: 600;
      color: #ff6b6b;
    }

    .review-rating {
      color: #f1c40f;
      font-size: 1rem;
    }

    /* Review Text */
    .review-text {
      color: #555;
      font-size: 1rem;
      line-height: 1.5;
    }

    /* Read More Button */
    .read-more-reviews {
      text-align: center;
      margin-top: 30px;
      margin-bottom: 30px;

    }

    .read-more-reviews a {
      display: inline-block;
      background-color: #ff6b6b;
      color: #fff;
      padding: 12px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s, transform 0.3s;
    }

    .read-more-reviews a:hover {
      background-color: #ff4b4b;
      transform: translateY(-3px);
    }

    /* FAQ */
    .faq-item {
      background: #fff;
      border-radius: 12px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s;
    }

    .faq-question {
      padding: 15px 20px;
      cursor: pointer;
      font-weight: 600;
      position: relative;
      transition: all 0.3s;
    }

    .faq-question::after {
      content: '+';
      position: absolute;
      right: 20px;
      font-size: 18px;
      transition: transform 0.3s;
    }

    .faq-item.active .faq-question::after {
      transform: rotate(45deg);
    }

    .faq-item.active .faq-question {
      background: #ff7675;
      color: #fff;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #555;
      transition: max-height 0.5s ease, padding 0.3s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
      padding: 15px 20px;
    }

    /* ===================== Design Enhancements (non-hero) ===================== */

    /* Course Table polish */
    .course-table th {
      letter-spacing: 0.2px;
    }

    .course-table td {
      background: #fff;
    }

    .enroll-btn {
      font-weight: 600;
      box-shadow: 0 6px 16px rgba(255, 118, 117, 0.18);
      transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .enroll-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(255, 118, 117, 0.28);
    }

    /* FAQ accent */
    .faq-item {
      border-left: 4px solid #ffe0e0;
    }

    .faq-item.active {
      border-left-color: #ff7675;
    }

    /* Contact icons */
    .icon_wrapper {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .icon_wrapper img {
      width: 22px;
      height: 22px;
    }

    /* Right hero buttons hover (non-hero safe tweak) */
    .cta-secondary-right:hover {
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
    }

    .cta-primary svg,
    .cta-secondary svg,
    .cta-secondary-right svg,
    .cta-sponsor svg {
      width: 16px;
      height: 16px;
    }

    /* ===================== Sponsored Sticky Sidebar ===================== */
    .content-layout {
      display: flex;
      gap: 24px;
      align-items: flex-start;
    }

    .content-main {
      flex: 1 1 auto;
      min-width: 0;
    }

    .sponsored-sidebar {
      position: sticky;
      top: 10px;
      width: 350px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    /* Main Sponsored Title */
    .sponsored-main-title {
      margin: 0 0 8px 0;
      font-size: 20px;
      font-weight: 800;
      color: #ff6b6b;
      text-align: center;
      padding: 12px 0;
    }

    /* Sponsored Card */
    .sponsored-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(6px);
      border-radius: 16px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
      padding: 16px;
      border: 1px solid rgba(255, 118, 117, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .sponsored-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .sponsored-img {
      width: 100%;
      height: 230px;
      border-radius: 12px;
      object-fit: cover;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      margin-bottom: 16px;
    }

    /* Sponsored Buttons Container */
    .sponsored-buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    /* Sponsor-specific buttons for white background */
    .cta-sponsor {
      width: 100%;
      border-radius: 9999px;
      padding: 8px;
      font-size: 14px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: #fff;
      border: none;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
      transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
      text-decoration: none;
    }

    .cta-sponsor.whatsapp {
      background: linear-gradient(135deg, #25D366, #128C7E);
    }

    .cta-sponsor.whatsapp:hover {
      filter: brightness(1.05);
      transform: translateY(-1px);
      box-shadow: 0 8px 18px rgba(37, 211, 102, 0.3);
    }

    .cta-sponsor.call {
      background: linear-gradient(135deg, #111827, #374151);
    }

    .cta-sponsor.call:hover {
      filter: brightness(1.1);
      transform: translateY(-1px);
      box-shadow: 0 8px 18px rgba(17, 24, 39, 0.3);
    }

    @media (max-width: 992px) {
      .content-layout {
        display: block;
      }

      .sponsored-sidebar {
        display: none;
      }
    }

    /* Responsive: Convert course table to cards on small screens */
    @media (max-width: 768px) {

      .course-table,
      .course-table thead,
      .course-table tbody,
      .course-table th,
      .course-table td,
      .course-table tr {
        display: block;
      }

      .course-table thead {
        display: none;
      }

      .course-table tr {
        margin: 0 0 16px 0;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
      }

      .course-table td {
        position: relative;
        padding: 14px 16px 14px 130px;
        border-bottom: 1px solid #f1f1f1;
      }

      .course-table td:last-child {
        border-bottom: 0;
      }

      .course-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 16px;
        top: 14px;
        width: 100px;
        font-weight: 600;
        color: #888;
      }
    }

    /* ===================== Section Spacing (non-hero) ===================== */
    body>.container {
      margin-top: 56px;
      margin-bottom: 56px;
    }

    body>.container h2 {
      margin-top: 20px;
      margin-bottom: 30px;
    }

    body>.container p {
      margin-bottom: 12px;
    }

    .course-table {
      margin-top: 16px;
      margin-bottom: 12px;
    }

    .reviews-section {
      padding-top: 60px;
      padding-bottom: 60px;
    }

    .faq-item {
      margin-bottom: 18px;
    }

    .section-default-property .text-center {
      margin-bottom: 18px;
    }

    .contact_page .row {
      row-gap: 20px;
    }

    @media (max-width: 768px) {
      body>.container {
        margin-top: 36px;
        margin-bottom: 36px;
      }

      .reviews-section {
        padding-top: 40px;
        padding-bottom: 40px;
      }

      .contact_page .row {
        row-gap: 16px;
      }
    }

    /* ===================== Section Cards & Headings ===================== */
    :root {
      --primary: #ff7675;
      --accent: #ff9f9a;
      --ink: #333;
      --surface: #ffffff;
    }

    /* Decorative vertical line for all section titles */
    h1, h2, h3 {
      position: relative;
      padding-bottom: 12px;
      text-align: center;
    }
    h1::after, h2::after, h3::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }
    
    /* Special styling for main page title */
    h1 {
      font-size: 2.2rem;
      font-weight: 700;
      color: #ff6b6b;
      margin-bottom: 20px;
    }
    
    /* About section specific styling */
    .about-section {
      background: var(--surface);
      padding: 32px;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      margin-bottom: 32px;
    }
    
    .about-section h2 {
      color: #ff6b6b;
      font-size: 1.8rem;
      margin-bottom: 24px;
    }
    
    .about-section h3 {
      color: #333;
      font-size: 1.4rem;
      margin: 32px 0 16px 0;
      text-align: left;
    }
    
    .about-section h3::after {
      left: 0;
      transform: none;
      width: 50px;
    }
    
    .about-section p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #555;
      margin-bottom: 16px;
    }
    
    .about-section ul {
      margin: 16px 0;
      padding-left: 0;
      list-style: none;
    }
    
    .about-section li {
      background: #f8f9fa;
      padding: 20px;
      margin: 12px 0;
      border-radius: 12px;
      border-left: 4px solid #ff6b6b;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .about-section li:hover {
      transform: translateX(4px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .about-section li b {
      color: #ff6b6b;
      font-size: 1.1rem;
      display: block;
      margin-bottom: 8px;
    }
    
    /* FAQ Section Styling */
    .faq-section {
      background: var(--surface);
      padding: 32px;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      margin-bottom: 32px;
    }
    
    .faq-section h2 {
      color: #ff6b6b;
      font-size: 1.8rem;
      margin-bottom: 24px;
    }
    
    /* Reviews Section Styling */
    .reviews-section h2 {
      color: #ff6b6b;
      font-size: 1.8rem;
      margin-bottom: 24px;
    }
    
    /* Course Section Styling */
    .course-section {
      background: var(--surface);
      padding: 32px;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      margin-bottom: 32px;
    }
    
    .course-section h2 {
      color: #ff6b6b;
      font-size: 1.8rem;
      margin-bottom: 24px;
    }
    
    /* Video Testimonials Section */
    .video-testimonials-section {
      background: var(--surface);
      padding: 32px;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      margin-bottom: 32px;
    }
    
    .video-testimonials-section h2 {
      color: #ff6b6b;
      font-size: 1.8rem;
      margin-bottom: 24px;
    }
    
    .video-testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 24px;
    }
    
    .video-testimonial-card {
      background: #f8f9fa;
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }
    
    .video-testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    
    .video-testimonial-card.active {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(255, 107, 107, 0.2);
      border: 2px solid #ff6b6b;
    }
    
    .video-thumbnail {
      position: relative;
      width: 100%;
      height: 200px;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 16px;
      background: #000;
    }
    
    .video-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 60px;
      background: rgba(255, 107, 107, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .play-button:hover {
      background: rgba(255, 107, 107, 1);
      transform: translate(-50%, -50%) scale(1.1);
    }
    
    .play-button svg {
      width: 24px;
      height: 24px;
      fill: white;
      margin-left: 4px;
    }
    
    .video-info {
      text-align: center;
    }
    
    .video-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: #333;
      margin-bottom: 8px;
    }
    
    .video-description {
      font-size: 0.9rem;
      color: #666;
      line-height: 1.4;
    }
    
    .video-embed-container {
      display: none;
      width: 100%;
      height: 400px;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 16px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .video-embed-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    
    .close-video {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(0,0,0,0.7);
      color: white;
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: bold;
    }
    
    .close-video:hover {
      background: rgba(0,0,0,0.9);
    }
    
    @media (max-width: 768px) {
      .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      
      .video-thumbnail {
        height: 180px;
      }
      
      .video-embed-container {
        height: 300px;
      }
    }

    /* Card surfaces for About and Course containers */
    body>.container:nth-of-type(1),
    body>.container:nth-of-type(2) {
      background: var(--surface);
      padding: 24px;
      border-radius: 14px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    }

    body>.container:nth-of-type(1) p,
    body>.container:nth-of-type(2) p {
      max-width: 80ch;
    }

    /* Courses table refinements */
    .course-table thead th {
      position: sticky;
      top: 0;
      background: var(--primary);
      z-index: 1;
    }

    .course-table tbody tr {
      transition: background 0.2s ease, transform 0.15s ease;
    }

    .course-table tbody tr:hover {
      transform: translateY(-1px);
    }

    .enroll-btn {
      background: linear-gradient(180deg, var(--primary), #ff6a69);
    }

    /* FAQ refinements */
    .faq-question {
      outline: none;
    }

    .faq-question:focus-visible {
      box-shadow: 0 0 0 3px rgba(255, 118, 117, 0.35) inset;
      border-radius: 8px;
    }