  /* Popup Styles */
        #merasmm-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 1rem;
        }

        #merasmm-popup {
            background: #fff;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
            padding: 2rem;
            max-width: 400px;
            width: 100%;
            position: relative;
            transform: scale(1);
            transition: transform 0.3s ease;
        }

        #merasmm-popup:hover {
            transform: scale(1.02);
        }

        #merasmm-close-popup {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            background: none;
            border: none;
            color: #6b7280;
            font-size: 1.5rem;
            cursor: pointer;
            display: none;
        }

        #merasmm-close-popup:hover {
            color: #4b5563;
        }

        #merasmm-countdown {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            color: #6b7280;
            font-size: 0.875rem;
        }

        #merasmm-popup h1 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #4f46e5;
            text-align: center;
            margin-bottom: 1rem;
        }

        #merasmm-popup p {
            font-size: 1rem;
            color: #374151;
            text-align: center;
            margin-bottom: 1rem;
        }

        .highlight-purple {
            color: #a855f7;
            font-weight: 600;
        }

        .highlight-pink {
            color: #ec4899;
            font-weight: 600;
        }

        .buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
        }

        #merasmm-popup a {
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            text-decoration: none;
            color: #fff;
            font-size: 0.875rem;
            transition: background-color 0.2s ease;
        }

        .mera-link {
            background: #4f46e5;
        }

        .mera-link:hover {
            background: #4338ca;
        }

        .whatsapp-link {
            background: #22c55e;
        }

        .whatsapp-link:hover {
            background: #16a34a;
        }

        .footer-text {
            font-size: 0.75rem;
            color: #6b7280;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .profile {
                flex-direction: column;
                text-align: center;
            }

            .profile-img img {
                max-width: 200px;
            }

            .teacher-info {
                flex-direction: column;
                text-align: center;
            }

            .teacher-img {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 640px) {
            #merasmm-popup {
                max-width: 90%;
                padding: 1.5rem;
            }

            #merasmm-popup h1 {
                font-size: 1.25rem;
            }

            #merasmm-popup p {
                font-size: 0.875rem;
            }

            .buttons {
                flex-direction: column;
            }
        }
    
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    color: #333;
    background-color: #f7f9fc;
    line-height: 1.6;
  }
  
  h1, h2, h3 {
    text-align: center;
    color: #075dad;
    margin-bottom: 15px;
  }
  
  p {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .section {
    text-align: center;
    padding: 50px 20px;
  }
  
  /* Hero Section */
  .hero {
    padding: 60px 20px;
    background: linear-gradient(to right, #0073e6, #003366);
    color: white;
    text-align: center;
    border-radius: 10px;
    animation: fadeIn 2s ease-in-out;
  }
  
  .hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2em;
  }
  
  /* Buttons */
  .btn {
    padding: 12px 25px;
    background: #075dad;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background: #003366;
  }
  
  /* About Section */
  .about {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  
  .about img {
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .about img:hover {
    transform: scale(1.05);
  }
  
  .about-content {
    max-width: 600px;
    text-align: left;
  }
  
  /* Courses Section */
  .courses {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .course-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .course-card:hover {
    transform: translateY(-5px);
  }
  
  /* Testimonials */
  .testimonials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    text-align: center;
    font-style: italic;
  }
  
  /* Footer */
  footer {
    background: #272a2c;
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px 10px 0 0;
    margin-top: 20px;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @media (max-width: 768px) {
    .about {
      flex-direction: column;
      text-align: center;
    }
  }
  