body {
      font-family: Arial, sans-serif;
      background: #f4f4f4;
      margin: 0;
      padding: 20px;
    }
    input:focus{
      border: 1px solid #292727;
    }

    .form-container {
      background: #fff;
      padding: 30px;
      max-width: 1000px;
      margin: auto;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    h2 {
      text-align: center;
      text-transform: uppercase;
      margin-bottom: 20px;
      text-align: center;
    }

    .section {
      margin-bottom: 30px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
    }

    td, th {
      border: 1px solid #ccc;
      padding: 5px;
      vertical-align: top;
    }

    input[type="text"], input[type="number"], textarea {
      width: 100%;
      padding: 6px;
      box-sizing: border-box;
    }

    .score-input {
      width: 80px;
    }
    @media (max-width: 600px) {
  .heading-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .heading-logo {
    margin-top: 10px;
  }
}

.heading-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #1e90ff;
  padding-bottom: 10px;
  flex-wrap: wrap;
}

.heading-text h2 {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  color: #333;
  text-align: center;
}

.heading-logo img {
  max-height: 60px;
  width: auto;
}


    .sub-title {
      background: #1e90ff;
      color: #fff;
      padding: 8px;
      font-weight: bold;
    }

    .footer-notes, .signatures {
      margin-top: 20px;
    }

    .signature-row {
      display: flex;
      justify-content: space-between;
    }

    .signature-block {
      width: 48%;
    }

    .scoring-system ul {
      padding-left: 20px;
      margin-top: 10px;
    }

    .scoring-system li {
      margin-bottom: 5px;
    }

    @media print {
      .no-print {
        display: none;
      }
    }
    @media (max-width: 768px) {
      .heading-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .heading-logo img {
        margin-top: 10px;
      }

      .signature-row {
        flex-direction: column;
      }

      table, th, td {
        font-size: 14px;
      }
    }