body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      background: 	#d4dce5;
      display: flex;
      justify-content: center;
       align-items: center;
    }

    .form-container {
      background-color: #ffffff;
      padding: 30px 40px;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 600px;
      justify-content: center;
      align-items: center;
    }

    .form-header {
      text-align: center;
      margin-bottom: 20px;
      padding-top: 10px;
    }

    .form-header img {
      width: 600px;
      height: auto;
      margin-top: 0px;
      margin-bottom: 5px;
      display: inline-block;
    }

    h2 {
      margin: 0;
      color: #203b63;
      font-size: 25px;
      font-family: Calibri, sans-serif;
    }

    fieldset {
      margin-bottom: 32px;
      padding: 1.5em;
      border: 1px solid #8fb651;
      border-radius: 8px;
    }

    legend {
      font-weight: bold;
      color: #203b63;
      font-size: 1.2em;
      margin-bottom: 2px;
    }

    label {
      display: flex;
      margin-top: 10px;
      font-weight: bold;
      font-size: 14px;
      color: #1a3054;
      white-space: nowrap;
    }
    .question {
    color: #1a3054;
    padding-bottom:10px;
    font-weight:bold;
    }

    input, textarea, select {
      background-color: #f7f9fc;  
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 6px;
      box-sizing: border-box;
    }
    input:focus, textarea:focus, select:focus {
      border-color: #d4dce5;
      outline: none;
    }
    textarea {
      resize: vertical;
    }

    button {
      margin-top: 25px;
      width: 100%;
      padding: 12px;
      background-color: #7da44a;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    button:hover {
      background-color:#d4dce5;
    }

    .form-group {
      margin-bottom: 30px;
      margin-top: 30px;
      border: 1px solid #aebecd;
      padding: 10px;
      margin-top:10px;
      border-radius: 8px;
      text-align:left;
      display:block;
      width:96%;
    } 
    .check-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: fit-content; 
    } 
     .check-group label {
        display: flex;
        align-items: center;
        gap: 8px;
        text-align:left !important;
        cursor: pointer;
        font-weight: normal
    } 
   
