 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-family: 'Work Sans';
            color: #e91e63;
            padding-left: 20px;
        }
        
        .logo-underline {
            border-bottom: 4px solid #f43f5e; 
            display: inline-block;
            padding-bottom: 0.1rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 4rem 0;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-text .highlight {
            color: #e91e63;
        }

        .hero-text p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: #666;
        }

        .cta-button {
            background: #e91e63;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #c2185b;
            transform: translateY(-2px);
        }

        .hero-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            padding: 2rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .testimonials {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .testimonial-avatars {
            display: flex;
            margin-right: 1rem;
        }

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid white;
            margin-left: -10px;
            background: #ddd;
        }

        .stars {
            color: #ffd700;
            font-size: 1.2rem;
        }

        /* Who Can Attend Section */
        .who-can-attend {
            padding: 4rem 0;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .audience-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            position: relative;
        }

        .audience-number {
            position: absolute;
            top: -15px;
            left: 20px;
            background: #e91e63;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .audience-card h3 {
            margin: 1rem 0;
            color: #333;
        }

        .secure-spot {
            text-align: center;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        /* KEY TAKEAWAYS SECTION */
        .takeaways-section {
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-top: 4rem; /* py-16 */
            padding-bottom: 4rem; /* py-16 */
            border-top: 1px solid #e2e8f0; /* border-t border-gray-200 */
        }

        .takeaways-section h2 {
            font-size: 1.875rem; /* text-3xl */
            font-weight: 900; /* font-black */
            text-align: center; /* text-center */
            margin-bottom: 3rem; /* mb-12 */
            max-width: 48rem; /* max-w-3xl */
            margin-left: auto;
            margin-right: auto;
        }

        .takeaways-grid {
            display: grid;
            grid-template-columns: 1fr; /* grid-cols-1 */
            gap: 2rem; /* gap-8 */
            max-width: 64rem; /* max-w-5xl */
            margin-left: auto;
            margin-right: auto;
        }
        @media (min-width: 640px) { /* sm:grid-cols-2 */
            .takeaways-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) { /* lg:grid-cols-3 */
            .takeaways-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .takeaway-article {
            background-color: #fef0f8; /* bg-pink-50 */
            padding: 1.5rem; /* p-6 */
            border-radius: 0.75rem; /* rounded-xl */
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
        }

        .takeaway-icon-wrapper {
            margin-bottom: 0.75rem; /* mb-3 */
            background-color: #fce4ec; /* bg-pink-100 */
            border-radius: 9999px; /* rounded-full */
            display: inline-flex; /* inline-flex */
            padding: 0.75rem; /* p-3 */
        }

        .takeaway-icon {
            height: 1.5rem; /* h-6 */
            width: 1.5rem; /* w-6 */
            stroke: #ec4899; /* stroke-pink-500 */
            fill: none;
        }

        .takeaway-article h3 {
            font-weight: 600; /* font-semibold */
            margin-bottom: 0.5rem; /* mb-2 */
        }

        .takeaway-article p {
            color: #6b7280; /* text-gray-500 */
            font-size: 0.875rem; /* text-sm */
            line-height: 1.625; /* leading-relaxed */
        }

        /* MENTOR SECTION */
        .mentor-section {
            background-color: #fce4ec; /* bg-pink-100 */
            padding-top: 4rem; /* py-16 */
            padding-bottom: 4rem; /* py-16 */
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            border-radius: 0.5rem; /* rounded-lg */
            position: relative; /* relative */
        }

        .mentor-section h2 {
            text-align: center; /* text-center */
            font-size: 1.875rem; /* text-3xl */
            font-weight: 800; /* font-extrabold */
            margin-bottom: 2.5rem; /* mb-10 */
            max-width: 36rem; /* max-w-xl */
            margin-left: auto;
            margin-right: auto;
        }

        .mentor-section h2 span {
            color: #db2777; /* text-pink-600 */
        }

        .mentor-content {
            display: flex; /* lg:flex (default to flex for mobile too, adjust with media query if needed) */
            max-width: 64rem; /* max-w-5xl */
            margin-left: auto;
            margin-right: auto;
            gap: 3rem; /* gap-12 */
            align-items: center; /* items-center */
        }
        @media (max-width: 1023px) { /* Adjust for smaller screens where lg:flex is not active */
            .mentor-content {
                flex-direction: column;
            }
        }


        .mentor-img {
            margin-left: auto; /* mx-auto */
            margin-right: auto; /* mx-auto */
            width: 16rem; /* w-64 */
            aspect-ratio: 1 / 1.2;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 6px 15px rgba(244, 63, 94, 0.25);
        }
        @media (min-width: 1024px) { /* lg:mx-0 */
            .mentor-img {
                margin-left: 0;
                margin-right: 0;
            }
        }

        .mentor-text-wrapper {
            padding-top: 2rem; /* pt-8 */
            text-align: center; /* text-center */
        }
        @media (min-width: 1024px) { /* lg:pt-0 and lg:text-left */
            .mentor-text-wrapper {
                padding-top: 0;
                text-align: left;
            }
        }

        .mentor-text-wrapper h3 {
            font-size: 1.25rem; /* text-xl */
            font-weight: 700; /* font-bold */
            color: #db2777; /* text-pink-600 */
            margin-bottom: 0.5rem; /* mb-2 */
        }

        .mentor-text-wrapper p:nth-of-type(1) { /* Founder, LMES Academy & Uptor */
            color: #000; /* text-black */
            font-weight: 600; /* font-semibold */
            margin-bottom: 0.75rem; /* mb-3 */
        }

        .mentor-text-wrapper p { /* generic paragraph for the other two */
            margin-bottom: 0.75rem; /* mb-3 */
            color: #2d3748; /* text-gray-800 */
            line-height: 1.625; /* leading-relaxed */
        }

        /* WHO CAN ATTEND (second section, previously using Tailwind heavily) */
        .who-can-attend-2 {
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-top: 4rem; /* py-16 (adjust if needed, original was pb-16) */
            padding-bottom: 4rem; /* pb-16 */
        }

        .who-can-attend-2 h2 {
            text-align: center; /* text-center */
            font-size: 1.875rem; /* text-3xl */
            font-weight: 800; /* font-extrabold */
            margin-bottom: 0.5rem; /* mb-2 */
        }

        .who-can-attend-2 .subtitle {
            text-align: center; /* text-center */
            max-width: 42rem; /* max-w-2xl */
            margin-left: auto;
            margin-right: auto;
            color: #4a5568; /* text-gray-600 */
            margin-bottom: 2.5rem; /* mb-10 */
        }

        .audience-grid-2 {
            display: grid;
            grid-template-columns: 1fr; /* grid-cols-1 */
            gap: 2.5rem; /* gap-10 */
            max-width: 72rem; /* max-w-6xl */
            margin-left: auto;
            margin-right: auto;
            color: #2d3748; /* text-gray-800 */
        }
        @media (min-width: 768px) { /* md:grid-cols-2 */
            .audience-grid-2 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1280px) { /* xl:grid-cols-4 */
            .audience-grid-2 {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .audience-item {
            display: flex; /* flex */
            gap: 1rem; /* gap-4 */
            align-items: flex-start; /* items-start */
        }

        .audience-number-circle {
            display: inline-block; /* inline-block */
            width: 2rem; /* w-8 */
            height: 2rem; /* h-8 */
            border-radius: 9999px; /* rounded-full */
            background-color: #db2777; /* bg-pink-600 */
            color: white; /* text-white */
            text-align: center; /* text-center */
            font-weight: 600; /* font-semibold */
            line-height: 2rem; /* leading-8 */
            user-select: none; /* select-none */
        }

        .audience-item h3 {
            font-weight: 600; /* font-semibold */
        }

        .audience-item p {
            font-size: 0.875rem; /* text-sm */
            line-height: 1.625; /* leading-relaxed */
        }

        /* SECURE YOUR SPOT & REGISTER */
        .secure-spot-section {
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-top: 3rem; /* py-12 */
            padding-bottom: 3rem; /* py-12 */
            background-color: white; /* bg-white */
            border: 1px solid #e5e7eb; /* border border-gray-200 */
            border-radius: 0.75rem; /* rounded-xl */
            display: flex; /* flex */
            flex-direction: column; /* flex-col */
            justify-content: space-between; /* justify-between */
            align-items: center; /* items-center */
            gap: 1.5rem; /* gap-6 */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
        }
        @media (min-width: 768px) { /* md:flex-row */
            .secure-spot-section {
                flex-direction: row;
            }
        }

        .secure-spot-section h3 {
            font-weight: 700; /* font-bold */
            font-size: 1.125rem; /* text-lg */
            margin-bottom: 0.25rem; /* mb-1 */
        }

        .secure-spot-section p {
            color: #4b5563; /* text-gray-700 */
            max-width: 28rem; /* max-w-md */
        }

        .secure-spot-button {
            background-color: #db2777; /* bg-pink-600 */
            color: white; /* text-white */
            padding: 0.75rem 1.5rem; /* px-6 py-3 */
            border-radius: 0.75rem; /* rounded-xl */
            font-weight: 600; /* font-semibold */
            transition: background-color 0.3s ease; /* transition */
            border: none; /* ensure no default button border */
            cursor: pointer;
        }

        .secure-spot-button:hover {
            background-color: #be185d; /* hover:bg-pink-700 */
        }

        /* FAQ */
        .faq-section {
            max-width: 56rem; /* max-w-4xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-top: 5rem; /* py-20 */
            padding-bottom: 5rem; /* py-20 */
        }

        .faq-section h2 {
            font-weight: 800; /* font-extrabold */
            font-size: 1.25rem; /* text-xl */
            margin-bottom: 1rem; /* mb-4 */
            border-bottom: 2px solid #ec4899; /* border-b border-pink-500 */
            padding-bottom: 0.5rem; /* pb-2 */
            color: #db2777; /* text-pink-600 */
        }

        .faq-scroll {
            max-height: 22.5rem; /* max-h-[360px] */
            overflow: auto; /* overflow-auto */
            padding-right: 0.75rem; /* pr-3 */
        }

        /* Custom Scrollbar for FAQ */
        .faq-scroll::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        .faq-scroll::-webkit-scrollbar-thumb {
            background-color: #f43f5e;
            border-radius: 10px;
        }
        /* FAQ expand/collapse */
        .faq-item > input[type='checkbox'] {
            display: none;
        }
        .faq-item > label {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.75rem 1rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 0 2px #e2e8f0;
            transition: background 0.3s;
            user-select: none;
            margin-bottom: 0.75rem; /* mb-3 */
        }
        .faq-item > label:hover {
            background-color: #fde6ef; /* subtle pink highlight */
        }
        .faq-item > label span {
            font-weight: 700;
            font-size: 1.5rem;
            color: #f43f5e;
            transition: transform 0.3s ease;
        }
        .faq-item > input[type='checkbox']:checked + label > span {
            transform: rotate(45deg);
        }
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding: 0 1rem;
            background: white;
            border-radius: 0 0 12px 12px;
            margin-bottom: 0.75rem;
            font-size: 1rem;
            line-height: 1.5rem;
            color: #444;
        }
        .faq-item > input[type='checkbox']:checked ~ .faq-content {
            max-height: 200px; /* Arbitrary max-height, adjust if content exceeds */
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }

        /* GeeksForGeeks Data Analytics Course Section */
        .data-analytics-section {
            max-width: 64rem; /* max-w-5xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-top: 3rem; /* py-12 */
            padding-bottom: 3rem; /* py-12 */
            background: linear-gradient(to top right, #3b82f6 0%, #60a5fa 100%); /* bg-gradient-to-tr from-blue-600 to-blue-400 */
            border-radius: 0.75rem; /* rounded-xl */
            color: white; /* text-white */
        }

        .data-analytics-content {
            display: flex; /* flex */
            flex-direction: column; /* flex-col */
            gap: 2rem; /* gap-8 */
            align-items: center; /* items-center */
            max-width: 56rem; /* max-w-4xl */
            margin-left: auto;
            margin-right: auto;
        }
        @media (min-width: 768px) { /* md:flex-row */
            .data-analytics-content {
                flex-direction: row;
            }
        }

        .data-analytics-image-wrapper {
            border-radius: 0.75rem 0 0 0.75rem; /* rounded-l-xl */
            background-color: rgba(5, 150, 105, 0.4); /* bg-green-900 bg-opacity-40 */
            width: 100%; /* w-full */
            padding: 2.5rem; /* p-10 */
            display: flex; /* flex */
            align-items: center; /* items-center */
            justify-content: center; /* justify-center */
        }
        @media (min-width: 768px) { /* md:w-1/2 */
            .data-analytics-image-wrapper {
                width: 50%;
            }
        }

        .data-analytics-image {
            width: 100%; /* w-full */
            border-radius: 0.5rem; /* rounded-lg */
        }

        .data-analytics-text-content {
            display: flex; /* flex */
            flex-direction: column; /* flex-col */
            flex-grow: 1; /* grow */
            font-size: 1.125rem; /* text-lg */
            max-width: 32rem; /* max-w-lg */
        }

        .data-analytics-meta {
            margin-bottom: 1rem; /* mb-4 */
            display: flex; /* flex */
            align-items: center; /* items-center */
            gap: 0.5rem; /* gap-2 */
        }

        .data-analytics-meta p {
            color: #86efac; /* text-green-300 */
            font-weight: 600; /* font-semibold */
        }

        .data-analytics-meta span {
            margin-left: auto; /* ml-auto */
            background-color: #f97316; /* bg-orange-500 */
            border-radius: 0.25rem; /* rounded */
            padding: 0.125rem 0.75rem; /* px-3 py-0.5 */
            font-size: 0.75rem; /* text-xs */
            font-weight: 700; /* font-bold */
            text-transform: uppercase; /* uppercase */
        }

        .data-analytics-text-content > p {
            margin-bottom: 1.5rem; /* mb-6 */
        }

        .data-analytics-features {
            display: flex; /* flex */
            flex-wrap: wrap; /* flex-wrap */
            gap: 1.5rem; /* gap-6 */
            align-items: center; /* items-center */
            font-size: 0.875rem; /* text-sm */
            color: #bbf7d0; /* text-green-200 */
            margin-bottom: 1.5rem; /* mb-6 */
        }

        .data-analytics-feature-item {
            display: flex; /* flex */
            align-items: center; /* items-center */
            gap: 0.25rem; /* gap-1 */
        }

        .data-analytics-feature-item svg {
            width: 1rem; /* w-4 */
            height: 1rem; /* h-4 */
            color: #86efac; /* text-green-300 */
        }

        .data-analytics-certification {
            margin-bottom: 1.75rem; /* mb-7 */
            color: #bbf7d0; /* text-green-200 */
        }

        .data-analytics-certification img {
            display: inline-block; /* inline-block */
        }

        .data-analytics-button {
            background-color: #065f46; /* bg-green-900 */
            color: white; /* text-white */
            padding: 0.75rem 2rem; /* px-8 py-3 */
            border-radius: 0.75rem; /* rounded-xl */
            font-weight: 600; /* font-semibold */
            width: max-content; /* w-max */
            margin-bottom: 1rem; /* mb-4 */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .data-analytics-button:hover {
            background-color: #047857; /* hover:bg-green-800 */
        }

        .data-analytics-demo-link {
            display: flex; /* flex */
            align-items: center; /* items-center */
            gap: 0.25rem; /* gap-1 */
            color: #bbf7d0; /* text-green-200 */
            font-weight: 600; /* font-semibold */
            font-size: 0.875rem; /* text-sm */
            white-space: nowrap; /* whitespace-nowrap */
            text-decoration: none;
            outline: none; /* tabindex="0" */
            transition: color 0.3s ease;
        }

        .data-analytics-demo-link:hover {
            color: #4ade80; /* hover:text-green-400 */
        }

        .data-analytics-demo-link svg {
            width: 1rem; /* w-4 */
            height: 1rem; /* h-4 */
            display: inline; /* inline */
        }

        /* Offline Locations */
        .offline-locations-section {
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-top: 4rem; /* py-16 */
            padding-bottom: 4rem; /* py-16 */
        }

        .offline-locations-section h3 {
            font-size: 1.5rem; /* text-2xl */
            font-weight: 600; /* font-semibold */
            margin-bottom: 2rem; /* mb-8 */
            text-align: center; /* text-center */
        }

        .location-buttons-wrapper {
            display: flex; /* flex */
            flex-wrap: wrap; /* flex-wrap */
            justify-content: center; /* justify-center */
            gap: 1.5rem; /* gap-6 */
            max-width: 48rem; /* max-w-3xl */
            margin-left: auto;
            margin-right: auto;
        }

        .location-button {
            padding: 1rem 2rem; /* px-8 py-4 */
            border-radius: 0.5rem; /* rounded-lg */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
            display: flex; /* flex */
            align-items: center; /* items-center */
            gap: 0.5rem; /* gap-2 */
            border: none; /* Remove default button border */
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .location-button svg {
            width: 1.25rem; /* w-5 */
            height: 1.25rem; /* h-5 */
            stroke: currentColor; /* use current text color */
            fill: none;
        }

        .location-button.bengaluru {
            background-color: #dbeafe; /* bg-blue-100 */
            color: #1d4ed8; /* text-blue-700 for icon */
        }
        .location-button.bengaluru:hover {
            background-color: #bfdbfe; /* hover:bg-blue-200 */
        }

        .location-button.pune {
            background-color: #ede9fe; /* bg-purple-100 */
            color: #6d28d9; /* text-purple-700 for icon */
        }
        .location-button.pune:hover {
            background-color: #ddd6fe; /* hover:bg-purple-200 */
        }

        .location-button.hyderabad, .location-button.noida { /* Grouped since they use similar green classes */
            background-color: #dcfce7; /* bg-green-100 */
            color: #047857; /* text-green-700 for icon */
        }
        .location-button.hyderabad:hover, .location-button.noida:hover {
            background-color: #a7f3d0; /* hover:bg-green-200 */
        }

        /* Course Overview */
        .course-overview-section {
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-bottom: 4rem; /* pb-16 */
        }

        .course-overview-section h3 {
            font-size: 1.25rem; /* text-xl */
            font-weight: 600; /* font-semibold */
            margin-bottom: 1rem; /* mb-4 */
        }

        .course-overview-content {
            max-width: 56rem; /* max-w-4xl */
        }

        .course-overview-content h4 {
            font-weight: 700; /* font-bold */
            margin-bottom: 0.75rem; /* mb-3 */
        }

        .course-overview-content ul {
            list-style: none; /* list-none */
            margin-top: 0; /* space-y-2 handled by margin-bottom on li */
            padding-left: 0;
            color: #2d3748; /* text-gray-800 */
        }

        .course-overview-content li {
            margin-bottom: 0.5rem; /* space-y-2 equivalent */
        }

        .custom-check::before {
            content: "•"; /* custom bullet point */
            color: #059669; /* text-emerald-600 */
            font-weight: 900;
            margin-right: 0.5rem; /* mr-2 */
        }

        /* Course Content Preview */
        .course-content-preview-section {
            max-width: 64rem; /* max-w-5xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-bottom: 6rem; /* pb-24 */
        }

        .course-content-preview-section h3 {
            font-size: 1.5rem; /* text-2xl */
            font-weight: 700; /* font-bold */
            margin-bottom: 1.5rem; /* mb-6 */
            text-align: center; /* text-center */
        }

        .course-content-box {
            background-color: white; /* bg-white */
            border: 2px solid #e5e7eb; /* border-2 border-gray-200 */
            border-radius: 0.5rem; /* rounded-lg */
            padding: 2rem; /* p-8 */
            max-height: 25rem; /* max-h-[400px] */
            overflow-y: auto; /* overflow-y-auto */
            line-height: 1.625; /* leading-relaxed */
            font-size: 0.875rem; /* text-sm */
            color: #1a202c; /* text-gray-900 */
        }

        .course-content-box p {
            margin-bottom: 0.5rem; /* Adjust as needed for spacing between sections */
        }

        .course-content-box ul {
            list-style: disc; /* list-disc */
            margin-left: 1.5rem; /* ml-6 */
            margin-bottom: 1rem; /* mb-4 */
        }

        /* UPCOMING BATCHES */
        .upcoming-batches-section {
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-bottom: 4rem; /* pb-16 */
        }

        .upcoming-batches-section h3 {
            text-align: center; /* text-center */
            font-size: 1.5rem; /* text-2xl */
            font-weight: 700; /* font-bold */
            margin-bottom: 2.5rem; /* mb-10 */
        }

        .batches-grid {
            max-width: 64rem; /* max-w-5xl */
            margin-left: auto;
            margin-right: auto;
            display: grid; /* grid */
            grid-template-columns: 1fr; /* grid-cols-1 */
            gap: 2.5rem; /* gap-10 */
        }
        @media (min-width: 768px) { /* md:grid-cols-2 */
            .batches-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .batch-card {
            border: 1px solid #d1d5db; /* border border-gray-300 */
            border-radius: 0.75rem; /* rounded-xl */
            padding: 1.5rem; /* p-6 */
            display: flex; /* flex */
            flex-direction: column; /* flex-col */
            justify-content: space-between; /* justify-between */
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
        }

        .batch-card-top div:nth-child(odd) { /* BATCH and STARTING FROM labels */
            font-weight: 600; /* font-semibold */
            font-size: 0.875rem; /* text-sm */
            margin-bottom: 0.25rem; /* mb-1 */
        }

        .batch-card-top div:nth-child(even) { /* Batch name and date */
            margin-bottom: 0.75rem; /* mb-3 */
            color: #2d3748; /* text-gray-800 */
        }

        .batch-date-time {
            display: flex; /* flex */
            justify-content: space-between; /* justify-between */
            align-items: center; /* items-center */
            margin-bottom: 0.75rem; /* mb-3 */
            color: #4b5563; /* text-gray-700 */
        }

        .batch-date-time div:last-child {
            font-size: 0.75rem; /* text-xs */
            color: #6b7280; /* text-gray-500 */
            text-align: right; /* text-right */
        }

        .batch-signup-button {
            width: 100%; /* w-full */
            background-color: #2d3748; /* bg-gray-800 */
            color: white; /* text-white */
            padding-top: 0.75rem; /* py-3 */
            padding-bottom: 0.75rem; /* py-3 */
            border-radius: 0.5rem; /* rounded-lg */
            transition: background-color 0.3s ease; /* transition */
            margin-bottom: 0.75rem; /* mb-3 */
            border: none;
            cursor: pointer;
        }

        .batch-signup-button:hover {
            background-color: #4a5568; /* hover:bg-gray-700 */
        }

        .batch-price-info {
            display: flex; /* flex */
            justify-content: space-between; /* justify-between */
            color: #9ca3af; /* text-gray-400 */
            font-size: 0.875rem; /* text-sm */
        }

        .batch-price-info div:first-child {
            text-decoration: line-through; /* line-through */
        }

        .batch-price-info div:last-child {
            font-weight: 600; /* font-semibold */
            color: #2d3748; /* text-gray-800 */
        }

        .batch-mentor-info {
            margin-top: 0.5rem; /* mt-2 */
            font-weight: 600; /* font-semibold */
            font-size: 0.875rem; /* text-sm */
            text-align: right; /* text-right */
        }

        /* Location Map Info */
        .location-map-info {
            background-color: #fce4ec; /* bg-pink-100 */
            border-radius: 0.75rem; /* rounded-xl */
            padding: 1.5rem; /* p-6 */
            margin-top: 3rem; /* mt-12 */
            display: flex; /* flex */
            flex-direction: column; /* flex-col */
            align-items: center; /* items-center */
            justify-content: space-between; /* justify-between */
            gap: 1rem; /* gap-4 */
            max-width: 56rem; /* max-w-4xl */
            margin-left: auto;
            margin-right: auto;
        }
        @media (min-width: 768px) { /* md:flex-row */
            .location-map-info {
                flex-direction: row;
            }
        }

        .location-map-info img {
            border-radius: 0.5rem; /* rounded-lg */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
        }

        .location-address {
            color: #1a202c; /* text-gray-900 */
            max-width: 32rem; /* max-w-lg */
            font-size: 0.875rem; /* text-sm */
        }
        @media (min-width: 768px) { /* md:max-w-xl and md:text-base */
            .location-address {
                max-width: 36rem;
                font-size: 1rem;
            }
        }

        .get-directions-button {
            background-color: #047857; /* bg-emerald-700 */
            color: white; /* text-white */
            border-radius: 0.5rem; /* rounded-lg */
            padding: 0.5rem 1.5rem; /* px-6 py-2 */
            transition: background-color 0.3s ease; /* transition */
            align-self: flex-start; /* self-start */
            border: none;
            cursor: pointer;
        }
        @media (min-width: 768px) { /* md:self-auto */
            .get-directions-button {
                align-self: auto;
            }
        }

        .get-directions-button:hover {
            background-color: #064e3b; /* hover:bg-emerald-800 */
        }

        /* Footer */
        .footer {
            border-top: 1px solid #e5e7eb; /* border-t border-gray-200 */
            padding-top: 1.5rem; /* py-6 */
            padding-bottom: 1.5rem; /* py-6 */
            text-align: center; /* text-center */
            font-size: 1rem; /* text-xs */
            color: #19191a; /* text-gray-400 */
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            font-family: 'Work Sans';
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .mentor-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .nav-links {
                display: none;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .audience-grid {
                grid-template-columns: 1fr;
            }

            /* Removed .takeaways-grid from here as it's handled by specific media queries now */
        }

         /* Custom Scrollbar for FAQ (already present and good) */
        .faq-scroll::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        .faq-scroll::-webkit-scrollbar-thumb {
            background-color: #f43f5e;
            border-radius: 10px;
        }
        /* FAQ expand/collapse (already present and good) */
        .faq-item > input[type='checkbox'] {
            display: none;
        }
        .faq-item > label {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.75rem 1rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 0 2px #e2e8f0;
            transition: background 0.3s;
            user-select: none;
        }
        .faq-item > label:hover {
            background-color: #fde6ef; /* subtle pink highlight */
        }
        .faq-item > label span {
            font-weight: 700;
            font-size: 1.5rem;
            color: #f43f5e;
            transition: transform 0.3s ease;
        }
        .faq-item > input[type='checkbox']:checked + label > span {
            transform: rotate(45deg);
        }
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding: 0 1rem;
            background: white;
            border-radius: 0 0 12px 12px;
            margin-bottom: 0.75rem;
            font-size: 1rem;
            line-height: 1.5rem;
            color: #444;
        }
        .faq-item > input[type='checkbox']:checked ~ .faq-content {
            max-height: 200px;
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }
        /* Mentor profile image container fix (already present and good) */
        .mentor-img {
            aspect-ratio: 1 / 1.2;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 6px 15px rgb(244 63 94 / 0.25);
        }
        /* For the Uptor logo pink underline (already present and good) */
        .logo-underline {
            border-bottom: 4px solid #f43f5e; 
            display: inline-block;
            padding-bottom: 0.1rem;
        }
        /* Custom check icon for list (already present and good) */
        .custom-check::before {
            content: "•";
            color: #059669;
            font-weight: 900;
            margin-right: 0.5rem;
        } * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-family: 'Work Sans';
            color: #e91e63;
            padding-left: 20px;
        }
        
        .logo-underline {
            border-bottom: 4px solid #f43f5e; 
            display: inline-block;
            padding-bottom: 0.1rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 4rem 0;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-text .highlight {
            color: #e91e63;
        }

        .hero-text p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: #666;
        }

        .cta-button {
            background: #e91e63;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #c2185b;
            transform: translateY(-2px);
        }

        .hero-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            padding: 2rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .testimonials {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .testimonial-avatars {
            display: flex;
            margin-right: 1rem;
        }

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid white;
            margin-left: -10px;
            background: #ddd;
        }

        .stars {
            color: #ffd700;
            font-size: 1.2rem;
        }

        /* Who Can Attend Section */
        .who-can-attend {
            padding: 4rem 0;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .audience-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            position: relative;
        }

        .audience-number {
            position: absolute;
            top: -15px;
            left: 20px;
            background: #e91e63;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .audience-card h3 {
            margin: 1rem 0;
            color: #333;
        }

        .secure-spot {
            text-align: center;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        /* KEY TAKEAWAYS SECTION */
        .takeaways-section {
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-top: 4rem; /* py-16 */
            padding-bottom: 4rem; /* py-16 */
            border-top: 1px solid #e2e8f0; /* border-t border-gray-200 */
        }

        .takeaways-section h2 {
            font-size: 1.875rem; /* text-3xl */
            font-weight: 900; /* font-black */
            text-align: center; /* text-center */
            margin-bottom: 3rem; /* mb-12 */
            max-width: 48rem; /* max-w-3xl */
            margin-left: auto;
            margin-right: auto;
        }

        .takeaways-grid {
            display: grid;
            grid-template-columns: 1fr; /* grid-cols-1 */
            gap: 2rem; /* gap-8 */
            max-width: 64rem; /* max-w-5xl */
            margin-left: auto;
            margin-right: auto;
        }
        @media (min-width: 640px) { /* sm:grid-cols-2 */
            .takeaways-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) { /* lg:grid-cols-3 */
            .takeaways-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .takeaway-article {
            background-color: #fef0f8; /* bg-pink-50 */
            padding: 1.5rem; /* p-6 */
            border-radius: 0.75rem; /* rounded-xl */
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
        }

        .takeaway-icon-wrapper {
            margin-bottom: 0.75rem; /* mb-3 */
            background-color: #fce4ec; /* bg-pink-100 */
            border-radius: 9999px; /* rounded-full */
            display: inline-flex; /* inline-flex */
            padding: 0.75rem; /* p-3 */
        }

        .takeaway-icon {
            height: 1.5rem; /* h-6 */
            width: 1.5rem; /* w-6 */
            stroke: #ec4899; /* stroke-pink-500 */
            fill: none;
        }

        .takeaway-article h3 {
            font-weight: 600; /* font-semibold */
            margin-bottom: 0.5rem; /* mb-2 */
        }

        .takeaway-article p {
            color: #6b7280; /* text-gray-500 */
            font-size: 0.875rem; /* text-sm */
            line-height: 1.625; /* leading-relaxed */
        }

        /* MENTOR SECTION */
        .mentor-section {
            background-color: #fce4ec; /* bg-pink-100 */
            padding-top: 4rem; /* py-16 */
            padding-bottom: 4rem; /* py-16 */
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            border-radius: 0.5rem; /* rounded-lg */
            position: relative; /* relative */
        }

        .mentor-section h2 {
            text-align: center; /* text-center */
            font-size: 1.875rem; /* text-3xl */
            font-weight: 800; /* font-extrabold */
            margin-bottom: 2.5rem; /* mb-10 */
            max-width: 36rem; /* max-w-xl */
            margin-left: auto;
            margin-right: auto;
        }

        .mentor-section h2 span {
            color: #db2777; /* text-pink-600 */
        }

        .mentor-content {
            display: flex; /* lg:flex (default to flex for mobile too, adjust with media query if needed) */
            max-width: 64rem; /* max-w-5xl */
            margin-left: auto;
            margin-right: auto;
            gap: 3rem; /* gap-12 */
            align-items: center; /* items-center */
        }
        @media (max-width: 1023px) { /* Adjust for smaller screens where lg:flex is not active */
            .mentor-content {
                flex-direction: column;
            }
        }


        .mentor-img {
            margin-left: auto; /* mx-auto */
            margin-right: auto; /* mx-auto */
            width: 16rem; /* w-64 */
            aspect-ratio: 1 / 1.2;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 6px 15px rgba(244, 63, 94, 0.25);
        }
        @media (min-width: 1024px) { /* lg:mx-0 */
            .mentor-img {
                margin-left: 0;
                margin-right: 0;
            }
        }

        .mentor-text-wrapper {
            padding-top: 2rem; /* pt-8 */
            text-align: center; /* text-center */
        }
        @media (min-width: 1024px) { /* lg:pt-0 and lg:text-left */
            .mentor-text-wrapper {
                padding-top: 0;
                text-align: left;
            }
        }

        .mentor-text-wrapper h3 {
            font-size: 1.25rem; /* text-xl */
            font-weight: 700; /* font-bold */
            color: #db2777; /* text-pink-600 */
            margin-bottom: 0.5rem; /* mb-2 */
        }

        .mentor-text-wrapper p:nth-of-type(1) { /* Founder, LMES Academy & Uptor */
            color: #000; /* text-black */
            font-weight: 600; /* font-semibold */
            margin-bottom: 0.75rem; /* mb-3 */
        }

        .mentor-text-wrapper p { /* generic paragraph for the other two */
            margin-bottom: 0.75rem; /* mb-3 */
            color: #2d3748; /* text-gray-800 */
            line-height: 1.625; /* leading-relaxed */
        }

        /* WHO CAN ATTEND (second section, previously using Tailwind heavily) */
        .who-can-attend-2 {
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-top: 4rem; /* py-16 (adjust if needed, original was pb-16) */
            padding-bottom: 4rem; /* pb-16 */
        }

        .who-can-attend-2 h2 {
            text-align: center; /* text-center */
            font-size: 1.875rem; /* text-3xl */
            font-weight: 800; /* font-extrabold */
            margin-bottom: 0.5rem; /* mb-2 */
        }

        .who-can-attend-2 .subtitle {
            text-align: center; /* text-center */
            max-width: 42rem; /* max-w-2xl */
            margin-left: auto;
            margin-right: auto;
            color: #4a5568; /* text-gray-600 */
            margin-bottom: 2.5rem; /* mb-10 */
        }

        .audience-grid-2 {
            display: grid;
            grid-template-columns: 1fr; /* grid-cols-1 */
            gap: 2.5rem; /* gap-10 */
            max-width: 72rem; /* max-w-6xl */
            margin-left: auto;
            margin-right: auto;
            color: #2d3748; /* text-gray-800 */
        }
        @media (min-width: 768px) { /* md:grid-cols-2 */
            .audience-grid-2 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1280px) { /* xl:grid-cols-4 */
            .audience-grid-2 {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .audience-item {
            display: flex; /* flex */
            gap: 1rem; /* gap-4 */
            align-items: flex-start; /* items-start */
        }

        .audience-number-circle {
            display: inline-block; /* inline-block */
            width: 2rem; /* w-8 */
            height: 2rem; /* h-8 */
            border-radius: 9999px; /* rounded-full */
            background-color: #db2777; /* bg-pink-600 */
            color: white; /* text-white */
            text-align: center; /* text-center */
            font-weight: 600; /* font-semibold */
            line-height: 2rem; /* leading-8 */
            user-select: none; /* select-none */
        }

        .audience-item h3 {
            font-weight: 600; /* font-semibold */
        }

        .audience-item p {
            font-size: 0.875rem; /* text-sm */
            line-height: 1.625; /* leading-relaxed */
        }

        /* SECURE YOUR SPOT & REGISTER */
        .secure-spot-section {
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-top: 3rem; /* py-12 */
            padding-bottom: 3rem; /* py-12 */
            background-color: white; /* bg-white */
            border: 1px solid #e5e7eb; /* border border-gray-200 */
            border-radius: 0.75rem; /* rounded-xl */
            display: flex; /* flex */
            flex-direction: column; /* flex-col */
            justify-content: space-between; /* justify-between */
            align-items: center; /* items-center */
            gap: 1.5rem; /* gap-6 */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
        }
        @media (min-width: 768px) { /* md:flex-row */
            .secure-spot-section {
                flex-direction: row;
            }
        }

        .secure-spot-section h3 {
            font-weight: 700; /* font-bold */
            font-size: 1.125rem; /* text-lg */
            margin-bottom: 0.25rem; /* mb-1 */
        }

        .secure-spot-section p {
            color: #4b5563; /* text-gray-700 */
            max-width: 28rem; /* max-w-md */
        }

        .secure-spot-button {
            background-color: #db2777; /* bg-pink-600 */
            color: white; /* text-white */
            padding: 0.75rem 1.5rem; /* px-6 py-3 */
            border-radius: 0.75rem; /* rounded-xl */
            font-weight: 600; /* font-semibold */
            transition: background-color 0.3s ease; /* transition */
            border: none; /* ensure no default button border */
            cursor: pointer;
        }

        .secure-spot-button:hover {
            background-color: #be185d; /* hover:bg-pink-700 */
        }

        /* FAQ */
        .faq-section {
            max-width: 56rem; /* max-w-4xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-top: 5rem; /* py-20 */
            padding-bottom: 5rem; /* py-20 */
        }

        .faq-section h2 {
            font-weight: 800; /* font-extrabold */
            font-size: 1.25rem; /* text-xl */
            margin-bottom: 1rem; /* mb-4 */
            border-bottom: 2px solid #ec4899; /* border-b border-pink-500 */
            padding-bottom: 0.5rem; /* pb-2 */
            color: #db2777; /* text-pink-600 */
        }

        .faq-scroll {
            max-height: 22.5rem; /* max-h-[360px] */
            overflow: auto; /* overflow-auto */
            padding-right: 0.75rem; /* pr-3 */
        }

        /* Custom Scrollbar for FAQ */
        .faq-scroll::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        .faq-scroll::-webkit-scrollbar-thumb {
            background-color: #f43f5e;
            border-radius: 10px;
        }
        /* FAQ expand/collapse */
        .faq-item > input[type='checkbox'] {
            display: none;
        }
        .faq-item > label {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.75rem 1rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 0 2px #e2e8f0;
            transition: background 0.3s;
            user-select: none;
            margin-bottom: 0.75rem; /* mb-3 */
        }
        .faq-item > label:hover {
            background-color: #fde6ef; /* subtle pink highlight */
        }
        .faq-item > label span {
            font-weight: 700;
            font-size: 1.5rem;
            color: #f43f5e;
            transition: transform 0.3s ease;
        }
        .faq-item > input[type='checkbox']:checked + label > span {
            transform: rotate(45deg);
        }
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding: 0 1rem;
            background: white;
            border-radius: 0 0 12px 12px;
            margin-bottom: 0.75rem;
            font-size: 1rem;
            line-height: 1.5rem;
            color: #444;
        }
        .faq-item > input[type='checkbox']:checked ~ .faq-content {
            max-height: 200px; /* Arbitrary max-height, adjust if content exceeds */
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }

        /* GeeksForGeeks Data Analytics Course Section */
        .data-analytics-section {
            max-width: 64rem; /* max-w-5xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-top: 3rem; /* py-12 */
            padding-bottom: 3rem; /* py-12 */
            background: linear-gradient(to top right, #3b82f6 0%, #60a5fa 100%); /* bg-gradient-to-tr from-blue-600 to-blue-400 */
            border-radius: 0.75rem; /* rounded-xl */
            color: white; /* text-white */
        }

        .data-analytics-content {
            display: flex; /* flex */
            flex-direction: column; /* flex-col */
            gap: 2rem; /* gap-8 */
            align-items: center; /* items-center */
            max-width: 56rem; /* max-w-4xl */
            margin-left: auto;
            margin-right: auto;
        }
        @media (min-width: 768px) { /* md:flex-row */
            .data-analytics-content {
                flex-direction: row;
            }
        }

        .data-analytics-image-wrapper {
            border-radius: 0.75rem 0 0 0.75rem; /* rounded-l-xl */
            background-color: rgba(5, 150, 105, 0.4); /* bg-green-900 bg-opacity-40 */
            width: 100%; /* w-full */
            padding: 2.5rem; /* p-10 */
            display: flex; /* flex */
            align-items: center; /* items-center */
            justify-content: center; /* justify-center */
        }
        @media (min-width: 768px) { /* md:w-1/2 */
            .data-analytics-image-wrapper {
                width: 50%;
            }
        }

        .data-analytics-image {
            width: 100%; /* w-full */
            border-radius: 0.5rem; /* rounded-lg */
        }

        .data-analytics-text-content {
            display: flex; /* flex */
            flex-direction: column; /* flex-col */
            flex-grow: 1; /* grow */
            font-size: 1.125rem; /* text-lg */
            max-width: 32rem; /* max-w-lg */
        }

        .data-analytics-meta {
            margin-bottom: 1rem; /* mb-4 */
            display: flex; /* flex */
            align-items: center; /* items-center */
            gap: 0.5rem; /* gap-2 */
        }

        .data-analytics-meta p {
            color: #86efac; /* text-green-300 */
            font-weight: 600; /* font-semibold */
        }

        .data-analytics-meta span {
            margin-left: auto; /* ml-auto */
            background-color: #f97316; /* bg-orange-500 */
            border-radius: 0.25rem; /* rounded */
            padding: 0.125rem 0.75rem; /* px-3 py-0.5 */
            font-size: 0.75rem; /* text-xs */
            font-weight: 700; /* font-bold */
            text-transform: uppercase; /* uppercase */
        }

        .data-analytics-text-content > p {
            margin-bottom: 1.5rem; /* mb-6 */
        }

        .data-analytics-features {
            display: flex; /* flex */
            flex-wrap: wrap; /* flex-wrap */
            gap: 1.5rem; /* gap-6 */
            align-items: center; /* items-center */
            font-size: 0.875rem; /* text-sm */
            color: #bbf7d0; /* text-green-200 */
            margin-bottom: 1.5rem; /* mb-6 */
        }

        .data-analytics-feature-item {
            display: flex; /* flex */
            align-items: center; /* items-center */
            gap: 0.25rem; /* gap-1 */
        }

        .data-analytics-feature-item svg {
            width: 1rem; /* w-4 */
            height: 1rem; /* h-4 */
            color: #86efac; /* text-green-300 */
        }

        .data-analytics-certification {
            margin-bottom: 1.75rem; /* mb-7 */
            color: #bbf7d0; /* text-green-200 */
        }

        .data-analytics-certification img {
            display: inline-block; /* inline-block */
        }

        .data-analytics-button {
            background-color: #065f46; /* bg-green-900 */
            color: white; /* text-white */
            padding: 0.75rem 2rem; /* px-8 py-3 */
            border-radius: 0.75rem; /* rounded-xl */
            font-weight: 600; /* font-semibold */
            width: max-content; /* w-max */
            margin-bottom: 1rem; /* mb-4 */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .data-analytics-button:hover {
            background-color: #047857; /* hover:bg-green-800 */
        }

        .data-analytics-demo-link {
            display: flex; /* flex */
            align-items: center; /* items-center */
            gap: 0.25rem; /* gap-1 */
            color: #bbf7d0; /* text-green-200 */
            font-weight: 600; /* font-semibold */
            font-size: 0.875rem; /* text-sm */
            white-space: nowrap; /* whitespace-nowrap */
            text-decoration: none;
            outline: none; /* tabindex="0" */
            transition: color 0.3s ease;
        }

        .data-analytics-demo-link:hover {
            color: #4ade80; /* hover:text-green-400 */
        }

        .data-analytics-demo-link svg {
            width: 1rem; /* w-4 */
            height: 1rem; /* h-4 */
            display: inline; /* inline */
        }

        /* Offline Locations */
        .offline-locations-section {
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-top: 4rem; /* py-16 */
            padding-bottom: 4rem; /* py-16 */
        }

        .offline-locations-section h3 {
            font-size: 1.5rem; /* text-2xl */
            font-weight: 600; /* font-semibold */
            margin-bottom: 2rem; /* mb-8 */
            text-align: center; /* text-center */
        }

        .location-buttons-wrapper {
            display: flex; /* flex */
            flex-wrap: wrap; /* flex-wrap */
            justify-content: center; /* justify-center */
            gap: 1.5rem; /* gap-6 */
            max-width: 48rem; /* max-w-3xl */
            margin-left: auto;
            margin-right: auto;
        }

        .location-button {
            padding: 1rem 2rem; /* px-8 py-4 */
            border-radius: 0.5rem; /* rounded-lg */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
            display: flex; /* flex */
            align-items: center; /* items-center */
            gap: 0.5rem; /* gap-2 */
            border: none; /* Remove default button border */
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .location-button svg {
            width: 1.25rem; /* w-5 */
            height: 1.25rem; /* h-5 */
            stroke: currentColor; /* use current text color */
            fill: none;
        }

        .location-button.bengaluru {
            background-color: #dbeafe; /* bg-blue-100 */
            color: #1d4ed8; /* text-blue-700 for icon */
        }
        .location-button.bengaluru:hover {
            background-color: #bfdbfe; /* hover:bg-blue-200 */
        }

        .location-button.pune {
            background-color: #ede9fe; /* bg-purple-100 */
            color: #6d28d9; /* text-purple-700 for icon */
        }
        .location-button.pune:hover {
            background-color: #ddd6fe; /* hover:bg-purple-200 */
        }

        .location-button.hyderabad, .location-button.noida { /* Grouped since they use similar green classes */
            background-color: #dcfce7; /* bg-green-100 */
            color: #047857; /* text-green-700 for icon */
        }
        .location-button.hyderabad:hover, .location-button.noida:hover {
            background-color: #a7f3d0; /* hover:bg-green-200 */
        }

        /* Course Overview */
        .course-overview-section {
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-bottom: 4rem; /* pb-16 */
        }

        .course-overview-section h3 {
            font-size: 1.25rem; /* text-xl */
            font-weight: 600; /* font-semibold */
            margin-bottom: 1rem; /* mb-4 */
        }

        .course-overview-content {
            max-width: 56rem; /* max-w-4xl */
        }

        .course-overview-content h4 {
            font-weight: 700; /* font-bold */
            margin-bottom: 0.75rem; /* mb-3 */
        }

        .course-overview-content ul {
            list-style: none; /* list-none */
            margin-top: 0; /* space-y-2 handled by margin-bottom on li */
            padding-left: 0;
            color: #2d3748; /* text-gray-800 */
        }

        .course-overview-content li {
            margin-bottom: 0.5rem; /* space-y-2 equivalent */
        }

        .custom-check::before {
            content: "•"; /* custom bullet point */
            color: #059669; /* text-emerald-600 */
            font-weight: 900;
            margin-right: 0.5rem; /* mr-2 */
        }

        /* Course Content Preview */
        .course-content-preview-section {
            max-width: 64rem; /* max-w-5xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-bottom: 6rem; /* pb-24 */
        }

        .course-content-preview-section h3 {
            font-size: 1.5rem; /* text-2xl */
            font-weight: 700; /* font-bold */
            margin-bottom: 1.5rem; /* mb-6 */
            text-align: center; /* text-center */
        }

        .course-content-box {
            background-color: white; /* bg-white */
            border: 2px solid #e5e7eb; /* border-2 border-gray-200 */
            border-radius: 0.5rem; /* rounded-lg */
            padding: 2rem; /* p-8 */
            max-height: 25rem; /* max-h-[400px] */
            overflow-y: auto; /* overflow-y-auto */
            line-height: 1.625; /* leading-relaxed */
            font-size: 0.875rem; /* text-sm */
            color: #1a202c; /* text-gray-900 */
        }

        .course-content-box p {
            margin-bottom: 0.5rem; /* Adjust as needed for spacing between sections */
        }

        .course-content-box ul {
            list-style: disc; /* list-disc */
            margin-left: 1.5rem; /* ml-6 */
            margin-bottom: 1rem; /* mb-4 */
        }

        /* UPCOMING BATCHES */
        .upcoming-batches-section {
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            padding-bottom: 4rem; /* pb-16 */
        }

        .upcoming-batches-section h3 {
            text-align: center; /* text-center */
            font-size: 1.5rem; /* text-2xl */
            font-weight: 700; /* font-bold */
            margin-bottom: 2.5rem; /* mb-10 */
        }

        .batches-grid {
            max-width: 64rem; /* max-w-5xl */
            margin-left: auto;
            margin-right: auto;
            display: grid; /* grid */
            grid-template-columns: 1fr; /* grid-cols-1 */
            gap: 2.5rem; /* gap-10 */
        }
        @media (min-width: 768px) { /* md:grid-cols-2 */
            .batches-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .batch-card {
            border: 1px solid #d1d5db; /* border border-gray-300 */
            border-radius: 0.75rem; /* rounded-xl */
            padding: 1.5rem; /* p-6 */
            display: flex; /* flex */
            flex-direction: column; /* flex-col */
            justify-content: space-between; /* justify-between */
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
        }

        .batch-card-top div:nth-child(odd) { /* BATCH and STARTING FROM labels */
            font-weight: 600; /* font-semibold */
            font-size: 0.875rem; /* text-sm */
            margin-bottom: 0.25rem; /* mb-1 */
        }

        .batch-card-top div:nth-child(even) { /* Batch name and date */
            margin-bottom: 0.75rem; /* mb-3 */
            color: #2d3748; /* text-gray-800 */
        }

        .batch-date-time {
            display: flex; /* flex */
            justify-content: space-between; /* justify-between */
            align-items: center; /* items-center */
            margin-bottom: 0.75rem; /* mb-3 */
            color: #4b5563; /* text-gray-700 */
        }

        .batch-date-time div:last-child {
            font-size: 0.75rem; /* text-xs */
            color: #6b7280; /* text-gray-500 */
            text-align: right; /* text-right */
        }

        .batch-signup-button {
            width: 100%; /* w-full */
            background-color: #2d3748; /* bg-gray-800 */
            color: white; /* text-white */
            padding-top: 0.75rem; /* py-3 */
            padding-bottom: 0.75rem; /* py-3 */
            border-radius: 0.5rem; /* rounded-lg */
            transition: background-color 0.3s ease; /* transition */
            margin-bottom: 0.75rem; /* mb-3 */
            border: none;
            cursor: pointer;
        }

        .batch-signup-button:hover {
            background-color: #4a5568; /* hover:bg-gray-700 */
        }

        .batch-price-info {
            display: flex; /* flex */
            justify-content: space-between; /* justify-between */
            color: #9ca3af; /* text-gray-400 */
            font-size: 0.875rem; /* text-sm */
        }

        .batch-price-info div:first-child {
            text-decoration: line-through; /* line-through */
        }

        .batch-price-info div:last-child {
            font-weight: 600; /* font-semibold */
            color: #2d3748; /* text-gray-800 */
        }

        .batch-mentor-info {
            margin-top: 0.5rem; /* mt-2 */
            font-weight: 600; /* font-semibold */
            font-size: 0.875rem; /* text-sm */
            text-align: right; /* text-right */
        }

        /* Location Map Info */
        .location-map-info {
            background-color: #fce4ec; /* bg-pink-100 */
            border-radius: 0.75rem; /* rounded-xl */
            padding: 1.5rem; /* p-6 */
            margin-top: 3rem; /* mt-12 */
            display: flex; /* flex */
            flex-direction: column; /* flex-col */
            align-items: center; /* items-center */
            justify-content: space-between; /* justify-between */
            gap: 1rem; /* gap-4 */
            max-width: 56rem; /* max-w-4xl */
            margin-left: auto;
            margin-right: auto;
        }
        @media (min-width: 768px) { /* md:flex-row */
            .location-map-info {
                flex-direction: row;
            }
        }

        .location-map-info img {
            border-radius: 0.5rem; /* rounded-lg */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
        }

        .location-address {
            color: #1a202c; /* text-gray-900 */
            max-width: 32rem; /* max-w-lg */
            font-size: 0.875rem; /* text-sm */
        }
        @media (min-width: 768px) { /* md:max-w-xl and md:text-base */
            .location-address {
                max-width: 36rem;
                font-size: 1rem;
            }
        }

        .get-directions-button {
            background-color: #047857; /* bg-emerald-700 */
            color: white; /* text-white */
            border-radius: 0.5rem; /* rounded-lg */
            padding: 0.5rem 1.5rem; /* px-6 py-2 */
            transition: background-color 0.3s ease; /* transition */
            align-self: flex-start; /* self-start */
            border: none;
            cursor: pointer;
        }
        @media (min-width: 768px) { /* md:self-auto */
            .get-directions-button {
                align-self: auto;
            }
        }

        .get-directions-button:hover {
            background-color: #064e3b; /* hover:bg-emerald-800 */
        }

        /* Footer */
        .footer {
            border-top: 1px solid #e5e7eb; /* border-t border-gray-200 */
            padding-top: 1.5rem; /* py-6 */
            padding-bottom: 1.5rem; /* py-6 */
            text-align: center; /* text-center */
            font-size: 1rem; /* text-xs */
            color: #19191a; /* text-gray-400 */
            max-width: 80rem; /* max-w-7xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem; /* px-6 */
            padding-right: 1.5rem; /* px-6 */
            font-family: 'Work Sans';
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .mentor-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .nav-links {
                display: none;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .audience-grid {
                grid-template-columns: 1fr;
            }

            /* Removed .takeaways-grid from here as it's handled by specific media queries now */
        }

         /* Custom Scrollbar for FAQ (already present and good) */
        .faq-scroll::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        .faq-scroll::-webkit-scrollbar-thumb {
            background-color: #f43f5e;
            border-radius: 10px;
        }
        /* FAQ expand/collapse (already present and good) */
        .faq-item > input[type='checkbox'] {
            display: none;
        }
        .faq-item > label {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.75rem 1rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 0 2px #e2e8f0;
            transition: background 0.3s;
            user-select: none;
        }
        .faq-item > label:hover {
            background-color: #fde6ef; /* subtle pink highlight */
        }
        .faq-item > label span {
            font-weight: 700;
            font-size: 1.5rem;
            color: #f43f5e;
            transition: transform 0.3s ease;
        }
        .faq-item > input[type='checkbox']:checked + label > span {
            transform: rotate(45deg);
        }
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding: 0 1rem;
            background: white;
            border-radius: 0 0 12px 12px;
            margin-bottom: 0.75rem;
            font-size: 1rem;
            line-height: 1.5rem;
            color: #444;
        }
        .faq-item > input[type='checkbox']:checked ~ .faq-content {
            max-height: 200px;
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }
        /* Mentor profile image container fix (already present and good) */
        .mentor-img {
            aspect-ratio: 1 / 1.2;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 6px 15px rgb(244 63 94 / 0.25);
        }
        /* For the Uptor logo pink underline (already present and good) */
        .logo-underline {
            border-bottom: 4px solid #f43f5e; 
            display: inline-block;
            padding-bottom: 0.1rem;
        }
        /* Custom check icon for list (already present and good) */
        .custom-check::before {
            content: "•";
            color: #059669;
            font-weight: 900;
            margin-right: 0.5rem;
        }