body {
    font-family: 'Inter', sans-serif;
    padding-top: 56px;
    color: #0F172A;
  }
  .navbar .btn {
    font-size: 14px;
  }

  /* Hero */
  .hero-section {
    background: #EFF6FF;
    padding: 80px 0;
  }
  
  .hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #1E40AF;
  }
  
  .hero-text {
    font-size: 18px;
    margin-top: 15px;
  }
  
  /* Trust Bar */
  .trust-bar {
    background: #ffffff;
    padding: 20px 0;
    font-weight: 500;
  }
  
  /* Sections */
  .section {
    padding: 70px 0;
  }
  
  .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
  }
  
  /* Category Cards */
  .category-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
  }
  
  .category-card h5 {
    font-weight: 600;
  }
  
  .category-card a {
    text-decoration: none;
    font-weight: 500;
    color: #1E40AF;
  }
  
  /* Featured */
  .featured-card {
    max-width: 600px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
  }
  
  /* CTA */
  .cta-section {
    background: #1E40AF;
    color: #ffffff;
    padding: 70px 0;
  }
  
  /* Footer */
  .footer {
    background: #0F172A;
    color: #ffffff;
    padding: 25px 0;
  }



  @media (max-width: 768px) {
    .hero-section {
      padding: 50px 0;
      text-align: center;
    }
  
    .hero-title {
      font-size: 30px;
      line-height: 1.2;
    }
  
    .hero-text {
      font-size: 16px;
    }
  
    .hero-section .btn {
      width: 100%;
      margin-bottom: 12px;
    }

    .trust-bar .col-md-3 {
        margin-bottom: 10px;
    }
    
    .category-card {
        text-align: center;
    }

    .category-card h5 {
        font-size: 18px;
    }
    .category-card p {
        font-size: 14px;
    }

    .featured-card {
        padding: 20px;
    }
    .featured-card h4 {
        font-size: 20px;
    }

    .cta-section h2 {
        font-size: 26px;
    }
    .cta-section .btn {
        width: 100%;
        font-size: 18px;
    }

    .footer {
        font-size: 14px;
    }

  }

