body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
  }
  .container {
    display: flex;
    max-width: 1100px;
    margin: 40px auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  .form-section {
    flex: 2;
    padding: 30px;
  }
  .form-section h3 {
    color: #0077cc;
  }
  .form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
  }
  .form-group input,
  .form-group textarea {
    flex: 1;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    outline: none;
  }
  textarea {
    resize: vertical;
  }
  .form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
  }
  .captcha {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .btn-submit {
    background: #1a237e;
    color: yellow;
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
  }
  .info-section {
    flex: 1;
    background: #142c85;
    color: white;
    padding: 30px;
  }
  .info-section h3 {
    margin-top: 0;
  }
  .info-section p, .info-section a {
    color: white;
    font-size: 14px;
    margin: 5px 0;
    text-decoration: none;
  }