/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
  }
  .about{
    height: 30vh;
    color: #fff;
    font-size: 7vh;
    padding-left: 10vw;
    padding-top: 7vh;
    background: rgba(0, 0, 0, 0.701);
  }
  .main-head p{
   font-size: smaller;
   padding-bottom: 10vh;
  }

  /* Responsive container */
  .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Form styles */
  .form {
    display: flex;
    flex-direction: column;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  label {
    margin-bottom: 5px;
  }
  
  input,
  select,
  textarea {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
  }
  
  button {
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  .captcha input[type="checkbox"] {
    display: none;
  }
  
 .captcha label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
  }
  
  .captcha label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 3px;
  }
  
  .captcha input[type="checkbox"]:checked + label:before {
    content: '\2713';
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    background: #007bff;
    color: #fff;
  }