#content {
    font-family: vazir;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333;
    width: 100%;
  }

  /* هدر */
  header {
    text-align: center;
    padding: 60px 20px 0;
    background: inherit;
    border-bottom: 4px solid #3b49a4;
  }
  header h1{
    font-size: 32px;
    font-weight: bold;
    color: #101b65;
    margin-top: 25px;
  }


  /* سکشن‌ها */
  section:not(footer>section) {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
  }

  section h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #3b49a4;
    font-weight: 700;
  }

  /* فرم تماس */
  form:not(.form_fo) {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  input:not(.input_fo), textarea {
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    transition: border 0.3s;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }

  input:focus, textarea:focus {
    outline: none;
    border-color: #0076FF;
  }

  textarea {
    resize: vertical;
    min-height: 120px;
  }

  button {
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(to bottom, #3b49a4, #3443aa);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: vazir;
    transition: opacity 0.3s ease;
  }

  button:hover {
    opacity: 0.9;
  }

  /* درباره ما */
  .about p {
    text-align: justify;
    font-size: 15px;
    color: #444;
    margin-bottom: 12px;
  }

  /* واکنش‌گرا */
  @media (max-width: 600px) {
    header {
      font-size: 20px;
    }
    section h2 {
      font-size: 18px;
    }
    input, textarea {
      font-size: 14px;
    }
    button {
      font-size: 14px;
    }
    header h1 { font-size: 26px; margin-top: 14px;}
  }
  #content *{
    position: relative;
    z-index: 2;
}
  #gow{
    position: fixed;
    align-self: center;
    opacity: 20%;
    z-index: 1;
    width: 100vmin;
    height: 100vmin;
    top: 50%;
    transform: translateY(-50%);
}