  .section-title {
    font-size: 58px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #1f2937;
  }

  .section-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 70px;
    max-width: 800px;
    line-height: 1.7;
  }

  .demo-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
  }

  /* Left */
  .left-content {
    margin: auto;
  }

  .left-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: #1f2937;
    line-height: 40px;


  }

  .left-content p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 40px;
  }

  .partner-card {
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 28px;
    background: #fff;
  }

  .partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  }

  .partner-card h4 {
    font-size: 24px;
    margin-bottom: 14px;
    font-weight: 500;

    background: linear-gradient(90deg, #2563eb, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .partner-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .partner-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
  }

  .partner-link:hover {
    gap: 12px;
  }

  /* Form */

  .form-box {
    background: #F6F6F666;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
  }

  label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #374151;
  }

  input,
  select,
  textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 15px 16px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: 0.3s ease;
    background: #fff;
  }

  input:focus,
  select:focus,
  textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
  }

  textarea {
    min-height: 130px;
    resize: none;
  }

  .full-width {
    grid-column: span 2;
  }

  .form-btn {
    margin-top: 28px;
    display: flex;
    justify-content: flex-end;
  }

  .submit-btn {
    background: #0b6be6;
    color: #fff;
    border: none;
    padding: 16px 34px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .submit-btn:hover {
    background: #0657bd;
    transform: translateY(-2px);
  }

  /* Bottom Info */

  .bottom-info {
    border-top: 1px solid #dbeafe;
    padding-top: 36px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .info-box {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .info-icon {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: #eaf3ff;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #0b6be6;
    font-size: 24px;
    flex-shrink: 0;
  }

  .info-content span {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 4px;
  }

  .info-content h4 {
    font-size: 22px;
    font-weight: 500;
    color: #1f2937;
  }

  /* Responsive */

  @media(max-width:1100px) {

    .demo-wrapper {
      grid-template-columns: 1fr;
    }

    .bottom-info {
      grid-template-columns: 1fr;
    }

  }

  @media(max-width:768px) {

    body {
      padding: 30px 20px;
    }

    .section-title {
      font-size: 42px;
    }

    .form-grid {
      grid-template-columns: 1fr;
    }

    .full-width {
      grid-column: span 1;
    }

    .left-content h3 {
      font-size: 30px;
    }

    .demo-wrapper {
      gap: 0;
    }

  }