body {
    font-family: "Poppins", sans-serif;
  }
  
  /* HERO SECTION */
  .target-hero {
    padding: 150px 0 120px;
    text-align: center;
    background: #f8f2ff;
  }
  
  .target-hero h1 {
    font-size: 48px;
    font-weight: 800;
  }
  
  .target-hero h1 span {
    color: #ff28fb;
  }
  
  .target-hero p {
    font-size: 18px;
    margin-top: 10px;
  }
  
  .hero-btn {
    margin-top: 20px;
    padding: 12px 35px;
    display: inline-block;
    background: linear-gradient(90deg, #ff28fb, #ff7bff);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
  }
  
  
  /* TARGET SECTION */
  .target-section {
    padding: 100px 0;
    text-align: center;
  }
  
  .section-title {
    font-size: 36px;
    font-weight: 700;
  }
  
  .section-title span {
    color: #ff28fb;
  }
  
  .target-box {
    background: #ffffff;
    padding: 35px;
    margin-bottom: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
  }
  
  .target-box:hover {
    transform: translateY(-10px);
  }
  
  .target-icon {
    width: 90px;
    margin-bottom: 25px;
  }
  
  .target-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .target-box p {
    font-size: 16px;
  }
  
  
  /* RESPONSIVE FIXES */
  @media (max-width: 768px) {
    .target-hero h1 {
      font-size: 34px;
    }
  }
  