body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f9fafc;
      color: #1a1a1a;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 50px 20px;
    }

    /* --- TOP CARDS --- */
    .top-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-bottom: 50px;
    }

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

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }

    .card img {
      width: 50px;
      margin-bottom: 15px;
      height: 50px;
    }

    .card h3 {
      color: #5a28d1;
      font-size: 20px;
      margin-bottom: 8px;
    }

    .card p {
      font-size: 14px;
      color: #444;
      margin: 5px 0;
    }

    .card a {
      color: #5a28d1;
      text-decoration: none;
      font-weight: bold;
    }

    /* --- BOTTOM SECTION --- */
    .bottom-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center; /* ✅ CENTER VERTICALLY */
    }

    /* LEFT TEXT */
    .text-section {
      display: flex;
      flex-direction: column;
      justify-content: center; /* ✅ PERFECT CENTERING */
    }

    .text-section h2 {
      font-size: 32px;
      font-weight: 700;
      color: #2c1f5d;
      margin-bottom: 15px;
    }

    .text-section p {
      color: #555;
      line-height: 1.6;
      margin-bottom: 25px;
      font-size: 15px;
    }

    .stats {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
    }

    .stats div {
      font-size: 22px;
      font-weight: bold;
      color: #2c1f5d;
    }

    .stats small {
      display: block;
      font-size: 14px;
      font-weight: normal;
      color: #666;
    }

    /* RIGHT FORM */
    .form-section {
      background: #fff;
      padding-right: 55px !important;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
    }

    .form-section h3 {
      margin-bottom: 20px;
      font-size: 20px;
      font-weight: bold;
      color: #2c1f5d;
      text-align: center;
    }

    .form-section input,
    .form-section textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 12px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 14px;
      outline: none;
      transition: border 0.2s;
    }

    .form-section input:focus,
    .form-section textarea:focus {
      border-color: #5a28d1;
    }

    .form-section textarea {
      resize: none;
      min-height: 80px;
    }

    .form-section button {
      width: 100%;
      background: #5a28d1;
      color: white;
      border: none;
      padding: 14px;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s ease-in-out;
    }

    .form-section button:hover {
      background: #451e9c;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 900px) {
      .bottom-section {
        grid-template-columns: 1fr;
      }
      .text-section {
        align-items: center;
        text-align: center;
      }
      .stats {
        justify-content: center;
      }
    }

    .form-section input::placeholder,
    .form-section textarea::placeholder {
        color: #000;   /* 🔥 BLACK COLOR */
        opacity: 1;    /* ensure it is not faded */
    }