    body {
      font-family: 'Outfit', sans-serif;
      background: #ffffff;
      margin: 0;
      padding: 0;
    }

    .features-section {
      background-color: #ffffff;
      padding: 60px 20px;
    }

    h2.section-title {
      text-align: center;
      font-size: 32px;
      color: #012c74;
      margin-bottom: 40px;
        margin-top: 40px;
    }

    .features-grid {
      max-width: 1200px;
      margin: auto;
        margin-bottom: 60px; 

      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 20px;
    }

    .feature-card {
      background-color: #ffffff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.6s ease forwards;
    }

    .feature-card:nth-child(1) { animation-delay: 0.1s; }
    .feature-card:nth-child(2) { animation-delay: 0.2s; }
    .feature-card:nth-child(3) { animation-delay: 0.3s; }
    .feature-card:nth-child(4) { animation-delay: 0.4s; }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .feature-card:hover {
      transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0.25, 0.25, 0.25, 0.25);

    }

    .feature-card i {
      background: #fcebbd;
      padding: 15px;
      border-radius: 50%;
      font-size: 20px;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fac535;
      margin-bottom: 20px;
    }

    .feature-card h3 {
      font-size: 22px;
      color: #152b5a;
      font-weight: 700;
      margin: 0 0 10px;
    }

    .feature-card p {
      font-size: 15px;
      color: #333;
      line-height: 1.8;
      margin: 0;
    }

    .feature-card.wide {
      grid-column: span 2;
    }

    .feature-card.dark {
      background-color: #012c74;
      color: #fac535;
      grid-column: 3 / 4;
      grid-row: 1 / span 2;
    }

    .feature-card.dark h3 {
      color: #fac535;
    }

    .feature-card.dark p {
      color: #ffffff;
      
    }

    .feature-card.dark i {
      background: #ffffff22;
    }


   

    @media (max-width: 992px) {
      .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }
      h2.section-title {
      text-align: center;
      font-size: 33px;
     position: relative;
     bottom: 80px;
       
    }

      .feature-card {
        padding: 20px;
         position: relative;
     bottom: 80px;
      }

      .feature-card.dark {
        grid-column: auto;
        grid-row: auto;
      }

      .feature-card.wide {
        grid-column: auto;
      }
         .features-grid {
   margin-bottom: 0 !important;
    margin-top: 0 !important; 
}
.instructor-section {
    padding-bottom: 0;
    padding-top: 0; /* or 0 if you want no space */
  }
    }
 