@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  .span1 {
    color: #f83600;
}

/* ---------- Learning Page Hero ---------- */
.learning-hero {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .learning-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .learning-hero h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .learning-hero p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .learning-hero h1 {
      font-size: 2rem;
    }
    .learning-hero p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .learning-hero {
      padding: 3rem 1rem;
    }
    .learning-hero h1 {
      font-size: 1.6rem;
    }
  }

/* ---------- Tutorial Section ---------- */
.tutorial-section {
    padding: 4rem 1rem;
    background: #fafafa;
  }
  
  .tutorial-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .tutorial-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #000000;
    font-weight: 600;
  }
  
  .tutorial-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
  }
  
  .tutorial-steps {
    text-align: left;
  }
  
  .tutorial-steps ol {
    list-style: decimal inside;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
  }
  
  .tutorial-steps li {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .tutorial-container h2 {
      font-size: 1.6rem;
    }
  
    .tutorial-steps li {
      font-size: 1rem;
    }
  }

/* ---------- YouTube Embed Responsive ---------- */
.youtube-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  margin-top: 50px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}