.instructor-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #9333ea);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: white;
  font-weight: bold;
}

.avatar-letter {
  text-transform: uppercase;
}

.badge-container .badge {
  padding: 0.6em 1em;
  font-size: 0.875rem;
  border-radius: 999px;
}

  
  .title-tagline
  {
      font-family: "Helvetica-bold";
  }
  
  .title-tagline-h3
  {
      font-size: 30px;
font-family: Helvetica-bold;

  }


    .section-title {
      font-size: 2rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 2rem;
      color: #111;
    }

    .feature-card {
      background-color: white;
      border-radius: 15px;
      padding: 2rem;
      text-align: center;
      transition: box-shadow 0.3s ease;
      box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    .feature-card:hover {
      box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    }

    .feature-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      color:  #5553ff;
      margin-bottom: 0.5rem;
    }

    .feature-text {
      color: #555;
    }


  .section-title {
      text-align: center;
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 3rem;
      color: #111;
    }

    .card-section {
      padding: 60px 15px;
    }

    .transform-card {
      background: #fff;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: box-shadow 0.3s ease;
      height: 100%;
    }

    .transform-card:hover {
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    }

    .transform-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .transform-title {
      font-size: 1.25rem;
      font-weight: 600;
      color:  #5553ff;
      margin-bottom: 0.5rem;
    }

    .transform-text {
      color: #555;
      font-size: 1rem;
    }
    
    
  .pricing-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .pricing-header h1 {
            font-weight: 700;
            font-size: 2.8rem;
            color: #333;
        }

        .pricing-header p {
            font-size: 1.1rem;
            color: #666;
        }

        .pricing-card {
            background-color: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .card-body {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .plan-name {
            font-size: 1.8rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .plan-description {
            font-size: 0.95rem;
            color: #777;
            margin-bottom: 20px;
        }

        .plan-price {
            font-weight: 700;
            margin-bottom: 25px;
            color: #333; /* Default main price color */
        }

        .plan-price .price-inr {
            font-size: 3rem; /* Main INR price size */
        }

        .plan-price .price-inr .currency {
            font-size: 1.8rem;
            vertical-align: super;
            margin-right: 2px;
        }

        .plan-price .price-usd-equivalent {
            font-size: 1.3rem; /* Smaller font for USD */
            color: #555;       /* Grey color for USD part */
            margin-left: 8px;  /* Space after INR price */
            font-weight: 500;  /* Less bold than main price */
            white-space: nowrap; /* Prevent USD price from wrapping alone */
        }

        .plan-price .price-usd-equivalent .currency {
            font-size: 0.9rem; /* Smaller $ sign */
            vertical-align: super; /* Keep alignment consistent */
            margin-right: 1px;
        }

        .features-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 30px;
        }

        .features-list li {
            margin-bottom: 12px;
            font-size: 1rem;
            color: #555;
        }

        .features-list .fa-check-circle {
            color: #28a745;
            margin-right: 10px;
        }

        .btn-plan {
            padding: 12px 20px;
            font-size: 1.1rem;
            font-weight: 500;
            border-radius: 8px;
            margin-top: auto;
        }

        .btn-standard {
            background-color: #fff;
            color: #5e35b1;
            border: 2px solid #5e35b1;
        }
        .btn-standard:hover {
            background-color: #5e35b1;
            color: #fff;
        }

        .btn-pro {
            background-color: #7e57c2;
            color: #fff;
            border: 2px solid #7e57c2;
        }
        .btn-pro:hover {
            background-color: #673ab7;
            border-color: #673ab7;
        }

        /* Pro Plan Specific Styles */
        .pro-plan-card {
            border: 2px solid #7e57c2;
            position: relative;
            overflow: visible;
        }

        .pro-plan-card .plan-name {
            color: #7e57c2;
        }
         .pro-plan-card .plan-name .fa-check-circle {
            color: #28a745;
        }

        .pro-plan-card .plan-price .price-inr {
            color: #7e57c2; /* Purple INR price for pro plan */
        }
        /* Optional: if you want the USD equivalent in pro plan to also be purple */
        /* .pro-plan-card .plan-price .price-usd-equivalent {
            color: #6a4ba2;
        } */


        .best-value-badge {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #ffc107;
            color: #333;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            white-space: nowrap;
        }
        .best-value-badge .fa-trophy {
            margin-right: 5px;
        }
        
          .success-stories-section {
              margin-top:5%;
            padding-top: 50px;
            padding-bottom: 50px;
            background: #f9fafb;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 50px;
        }

        .testimonial-card {
            background-color: #fff;
            border: 1px solid #e9ecef;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
            transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
            height: 100%; /* Ensure cards in a row have same height */
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            transform: translateY(-5px);
        }

        .star-rating .fa-star {
            color: #ffc107; /* Yellow stars */
            font-size: 1.2rem;
            margin-right: 2px;
        }

        .testimonial-quote {
            font-size: 1rem;
            color: #555;
            margin-top: 15px;
            margin-bottom: 20px;
            line-height: 1.6;
            flex-grow: 1; /* Pushes name/role to bottom if quote is short */
        }

        .student-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 3px;
        }

        .student-role {
            font-size: 0.9rem;
            color: #777;
        }

        .social-proof-stats {
            margin-top: 40px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap; /* Allow wrapping on smaller screens */
            gap: 20px; /* Spacing between items */
        }

        .stat-item {
            display: flex;
            align-items: center;
            font-size: 0.95rem;
            color: #555;
            padding: 5px 10px;
        }

        .stat-item .fa-check-circle {
            color: #28a745; /* Green */
            font-size: 1.2rem;
            margin-right: 8px;
        }

        .stat-item .fa-star { /* For average rating */
            color: #ffc107; /* Yellow */
            font-size: 1.2rem;
            margin-right: 8px;
        }

        .stat-item .fa-award { /* For real-world skills */
            color: #6f42c1; /* Purple */
            font-size: 1.2rem;
            margin-right: 8px;
        }

.faq-section {
            max-width: 800px; /* Control the width of the FAQ content */
            margin: 0 auto; /* Center the section */
            margin-top:8%;
        }

        .faq-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50; /* Darker title color */
            margin-bottom: 50px;
        }

        .faq-item {
            padding-bottom: 20px;
            margin-bottom: 20px;
            border-bottom: 1px solid #eef2f7; /* Light border for separation */
        }

        .faq-item:last-child {
            border-bottom: none; /* No border for the last item */
            margin-bottom: 0;
        }

        .faq-question {
            font-size: 1.25rem; /* Slightly larger font for question */
            font-weight: 600;
            color: #34495e; /* Question color */
            margin-bottom: 10px;
        }

        .faq-answer {
            font-size: 1rem;
            color: #555; /* Answer text color */
            line-height: 1.7;
        }
         .cta-section {
            background-color: #6A0DAD; /* A vibrant purple, adjust as needed */
            /* You can also use a gradient if you prefer:
               background-image: linear-gradient(to right, #6A0DAD, #8A2BE2);
            */
            padding: 80px 20px; /* Generous padding */
            text-align: center;
            color: #fff; /* White text */
        }

        .cta-title {
            font-size: 2.8rem; /* Large title */
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .cta-subtitle {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.9; /* Slightly less prominent than the title */
            max-width: 700px; /* Limit width for better readability */
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background-color: #FFD700; /* Bright yellow */
            color: #212529; /* Dark text for contrast on yellow */
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .cta-button:hover {
            background-color: #ffca28; /* Slightly darker yellow on hover */
            transform: translateY(-2px); /* Slight lift on hover */
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .cta-button .emoji {
            margin-right: 8px;
            font-size: 1.2em; /* Make emoji slightly larger */
            vertical-align: middle;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .cta-title {
                font-size: 2.2rem;
            }
            .cta-subtitle {
                font-size: 1rem;
            }
            .cta-button {
                padding: 12px 25px;
                font-size: 1rem;
            }
            .cta-section {
                padding: 60px 15px;
            }
        }
         @media (max-width: 576px) {
            .cta-title {
                font-size: 1.8rem;
            }
        }
        
        
        .course-content-section {
            max-width: 850px;
            margin: 0 auto;
            background-color: #ffffff;
            padding: 35px 45px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
        }

        .section-header {
            text-align: center;
            margin-bottom: 45px;
        }

        .section-header .main-title {
            font-size: 2.6rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
        }

        .section-header .lecture-count {
            font-size: 1.15rem;
            color: #5a6772;
            text-align: left;
        }

        .lecture-list {
            list-style: none;
            padding-left: 0;
        }

        .lecture-item {
            display: flex;
            align-items: center;
            padding: 20px 10px;
            border-bottom: 1px solid #e7eaed;
            border-radius: 8px;
            margin-bottom: 8px;
        }

        .lecture-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .lecture-icon-container {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #e8e0f3;
            color: #6A0DAD;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            margin-right: 25px;
            flex-shrink: 0;
        }

        .lecture-icon-container .fa-file-alt { /* Using generic file icon */
            font-size: 1.1rem;
        }

        .lecture-details {
            flex-grow: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }

        .lecture-title-info {
            /* Takes up available space */
        }

        .lecture-number {
            font-weight: 600;
            color: #7f8c98;
            margin-right: 10px;
            font-size: 0.95rem;
        }

        .lecture-title {
            font-size: 1.1rem;
            font-weight: 500;
            color: #34495e;
        }

        .lecture-duration {
            font-size: 0.9rem;
            color: #6a0dad;
            background-color: #f3eafd;
            padding: 5px 10px;
            border-radius: 20px;
            white-space: nowrap;
            font-weight: 500;
        }
        
           .mastery-section {
            /* background-color: #fff; If the section itself needs a white bg */
            /* padding: 60px 0; */
        }

        .section-main-title {
            text-align: center;
            font-size: 2.5rem; /* Adjusted from image */
            font-weight: 700;
            color: #2c3e50; /* Dark blue-grey */
            margin-bottom: 50px;
        }

        .mastery-item-card {
            background-color: #fff;
            border-radius: 12px;
            padding: 30px 25px;
            height: 100%; /* Ensures cards in a row have the same height */
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        .mastery-item-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .mastery-icon {
            font-size: 1.8rem; /* Adjusted icon size */
            margin-bottom: 18px;
            width: 40px; /* To align text nicely if icons vary in width */
        }

        /* Specific Icon Colors */
        .icon-grocery { color: #8A2BE2; } /* Purple */
        .icon-no-code { color: #FFC107; } /* Yellow/Gold */
        .icon-firebase { color: #28A745; } /* Green */
        .icon-career { color: #0D6EFD; } /* Blue */
        .icon-app-store { color: #DC3545; } /* Red */
        .icon-mastery { color: #FD7E14; } /* Orange */


        .mastery-title {
            font-size: 1.25rem; /* Adjusted title size */
            font-weight: 600;
            color: #343a40;
            margin-bottom: 10px;
        }

        .mastery-description {
            font-size: 0.95rem;
            color: #555e68;
            line-height: 1.6;
            flex-grow: 1; /* Ensures description takes available space if titles vary in length */
        }

        /* Responsive adjustments for columns */
        @media (min-width: 992px) { /* lg and up */
            .mastery-section .col-lg-4 {
                 margin-bottom: 30px; /* Ensure spacing between rows */
            }
        }
        @media (max-width: 991.98px) and (min-width: 768px) { /* md only */
             .mastery-section .col-md-6 {
                 margin-bottom: 30px;
            }
        }
         @media (max-width: 767.98px) { /* sm and xs */
             .mastery-section .col-12 { /* Or col-sm-12 if you want it to stack only on xs */
                 margin-bottom: 30px;
            }
        }
        
         .hero-section {
            background-color: #fcfaff;
            padding: 5% 15px; /* Responsive padding */
            text-align: center;
            min-height: 80vh; /* Ensure it takes good vertical space */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hero-badge {
            display: inline-block; /* Allows padding and centering */
            padding: 10px 15px;
            background-color: #fef9c3;
            color: #844d0f;
            border-radius: 20px;
            font-size: 0.875rem; /* 14px */
            margin-bottom: 25px;
            font-weight: 500;
        }

        .hero-title {
            font-size: 2.8rem; /* 45px base */
            line-height: 1.2; /* Adjusted for better wrapping */
            font-weight: 700;
            color: #1f2937; /* Default title color */
            margin-top: 0;
            margin-bottom: 20px;
            max-width: 800px; /* Control width for better centering and wrapping */
            margin-left: auto;
            margin-right: auto;
        }

        .hero-title .highlight-purple {
            color: #5553ff;
        }

        .hero-description {
            font-size: 1.25rem; /* 20px base */
            color: #4b5563;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 750px; /* Control width for better centering and wrapping */
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button-group {
            margin-bottom: 40px;
            display: flex;
            flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
            justify-content: center;
            gap: 15px; /* Space between buttons */
        }

        .btn-hero {
            display: inline-block;
            text-align: center;
            padding: 12px 30px; /* Adjusted padding */
            font-size: 1.125rem; /* 18px */
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
            border: 1px solid transparent; /* Base for bordered button */
        }

        .btn-primary-hero {
            background-color:  #5553ff;
            color: white;
        }
        .btn-primary-hero:hover {
            background-color: #7e22ce;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
            color: white;
        }

        .btn-secondary-hero {
            background-color: #ffffff;
            color: black;
            border: 1px solid #d1d5da;
        }
        .btn-secondary-hero:hover {
            background-color: #f3f4f6; /* Light grey hover */
            border-color: #adb5bd;
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap; /* Allow stats to wrap */
            justify-content: center;
            gap: 15px 30px; /* Row and column gap */
            font-size: 0.95rem;
            color: #4b5563;
        }

        .stat-item {
            display: flex;
            align-items: center;
        }

        .stat-item i {
            margin-right: 8px;
            font-size: 1.1em; /* Slightly larger icon */
        }

        .stat-item .fa-star { color: #ebb828; }
        .stat-item .fa-user { color: #a854f7; }
        .stat-item .fa-clock { color: #21c55d; }
        .stat-item .fa-award { color: #f98138; }


        /* Responsive Adjustments */
        @media (max-width: 992px) { /* Medium devices (tablets, less than 992px) */
            .hero-title {
                font-size: 2.4rem; /* Slightly smaller */
            }
            .hero-description {
                font-size: 1.1rem;
            }
            .hero-section {
                padding-top: 8%;
                padding-bottom: 8%;
            }
        }

        @media (max-width: 768px) { /* Small devices (landscape phones, less than 768px) */
            .hero-badge {
                font-size: 0.8rem;
                padding: 8px 12px;
                margin-bottom: 20px;
            }
            .hero-title {
                font-size: 2rem;
                line-height: 1.3;
            }
            .hero-description {
                font-size: 1rem;
                margin-bottom: 25px;
            }
            .btn-hero {
                padding: 10px 25px;
                font-size: 1rem;
                width: auto; /* Allow buttons to take natural width or stack */
            }
            .cta-button-group {
                 margin-bottom: 30px;
            }
            .hero-stats {
                gap: 10px 20px;
                font-size: 0.9rem;
            }
            .hero-section {
                padding-top: 10%;
                padding-bottom: 10%;
            }
        }

        @media (max-width: 576px) { /* Extra small devices (portrait phones, less than 576px) */
             .hero-badge {
                font-size: 0.75rem;
            }
            .hero-title {
                font-size: 1.7rem; /* Even smaller */
            }
            .hero-description {
                font-size: 0.9rem;
            }
            .btn-hero {
                width: 100%; /* Make buttons full width for easier tapping */
                margin-bottom: 10px; /* Space when stacked */
            }
            .cta-button-group {
                flex-direction: column; /* Stack buttons vertically */
                align-items: center;
                gap: 10px;
            }
             .btn-hero:last-child {
                margin-bottom: 0;
            }
            .hero-stats {
                flex-direction: column; /* Stack stats vertically */
                align-items: flex-start; /* Align stat text to left */
                gap: 10px;
                padding-left: 0; /* Reset padding if it was for inline display */
            }
            .hero-section {
                padding-top: 12%;
                padding-bottom: 12%;
            }
        }
        
         .course-content-section {
            max-width: 850px;
            margin: 0 auto;
            background-color: #ffffff;
            padding: 35px 45px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px; /* Adjusted default margin */
        }

        .section-header .main-title { /* Bootstrap's fw-bold handles weight */
            font-size: 2.4rem; /* Adjusted default font size */
            color: #2c3e50;
            margin-bottom: 10px; /* Adjusted default margin */
        }

        .section-header .lecture-count {
            font-size: 1.1rem; /* Adjusted default font size */
            color: #5a6772;
        }

        .lecture-list {
            list-style: none;
            padding-left: 0;
        }

        .lecture-item {
            display: flex;
            align-items: center;
            padding: 18px 8px; /* Adjusted default padding */
            border-bottom: 1px solid #e7eaed;
            border-radius: 8px;
            margin-bottom: 8px;
        }

        .lecture-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .lecture-icon-container {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #e8e0f3;
            color: #6A0DAD;
            border-radius: 50%;
            width: 40px; /* Adjusted default width */
            height: 40px; /* Adjusted default height */
            margin-right: 20px; /* Adjusted default margin */
            flex-shrink: 0;
        }

        .lecture-icon-container .fa-file-alt {
            font-size: 1rem; /* Adjusted default icon font size */
        }

        .lecture-details {
            flex-grow: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px; /* Adjusted default gap */
        }

        .lecture-title-info {
            /* Takes up available space */
        }

        .lecture-number {
            font-weight: 600;
            color: #7f8c98;
            margin-right: 8px; /* Adjusted default margin */
            font-size: 0.9rem; /* Adjusted default font size */
        }

        .lecture-title {
            font-size: 1rem; /* Adjusted default font size */
            font-weight: 500;
            color: #34495e;
            line-height: 1.4; /* Ensure good line height for wrapping titles */
        }

        .lecture-duration {
            font-size: 0.85rem; /* Adjusted default font size */
            color: #6a0dad;
            background-color: #f3eafd;
            padding: 4px 8px; /* Adjusted default padding */
            border-radius: 20px;
            white-space: nowrap;
            font-weight: 500;
        }

        /* --- Mobile Responsive Adjustments --- */

        @media (max-width: 768px) { /* Tablets and smaller */
            .course-content-section {
                padding: 25px 20px; /* Reduce padding */
                margin-left: 15px; /* Add some margin for container on smaller screens */
                margin-right: 15px;
            }

            .section-header .main-title {
                font-size: 2rem; /* Reduce title font size */
            }

            .section-header .lecture-count {
                font-size: 1rem; /* Reduce count font size */
            }
             .section-header {
                margin-bottom: 30px;
            }

            .lecture-item {
                padding: 15px 5px; /* Reduce item padding */
            }

            .lecture-icon-container {
                width: 35px; /* Slightly smaller icon container */
                height: 35px;
                margin-right: 15px;
            }
            .lecture-icon-container .fa-file-alt {
                font-size: 0.9rem;
            }

            .lecture-title {
                font-size: 0.95rem;
            }
            .lecture-number {
                font-size: 0.85rem;
            }
            .lecture-duration {
                font-size: 0.8rem;
                padding: 3px 7px;
            }
        }

        @media (max-width: 576px) { /* Small phones */
            body {
                padding-top: 20px;
                padding-bottom: 30px;
            }
            .course-content-section {
                padding: 20px 15px;
                border-radius: 10px;
                 margin-left: 10px;
                margin-right: 10px;
            }

            .section-header .main-title {
                font-size: 1.7rem;
            }
            .section-header .lecture-count {
                font-size: 0.9rem;
            }

            .lecture-item {
                padding: 12px 0px; /* Further reduce item padding, less horizontal */
                align-items: flex-start; /* Align icon to top if title wraps extensively */
            }

            .lecture-icon-container {
                width: 30px;
                height: 30px;
                margin-right: 10px;
                margin-top: 3px; /* Slight top margin for alignment with multi-line titles */
            }
             .lecture-icon-container .fa-file-alt {
                font-size: 0.8rem;
            }

            .lecture-details {
                /* Optional: Stack title and duration on very small screens if needed */
                /* flex-direction: column;
                align-items: flex-start;
                gap: 5px; */
            }
             .lecture-title-info {
                 /* margin-bottom: 5px; /* If stacking duration below */
             }

            .lecture-title {
                font-size: 0.9rem;
            }
             .lecture-number {
                font-size: 0.8rem;
                margin-right: 5px;
            }
            .lecture-duration {
                font-size: 0.75rem;
                /* align-self: flex-start; /* If stacking */
            }
        }