
    header {
      background: #000;
      color: #fff;
      padding: 20px 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .nav-container {
      max-width: 1200px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 50px;
      margin-right: 10px;
    }

    .nav-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 15px;
    }

    .nav-links a {
      text-decoration: none;
      color: #fff;
      font-weight: bold;
      font-size: 1.2rem;
      border-bottom: 3px solid transparent;
      transition: all 0.3s ease;
    }

    .nav-links a.active {
      border-bottom: 3px solid #fff;
    }

    .notification {
      background: #0e7cc1;
      color: #fff;
      padding: 30px 20px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .notification-left {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      flex: 1 1 600px;
    }

    .notification-left .icon {
      font-size: 2rem;
      background: #fff;
      color: #0e7cc1;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .notification-text {
      max-width: 800px;
    }

    .notification-text h2 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }

    .notification-text h3 {
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .notification-text p {
      font-size: 1rem;
      line-height: 1.5;
    }

    .close-btn {
      font-size: 2rem;
      cursor: pointer;
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      .nav-links {
        flex-direction: column;
        align-items: center;
      }

      .notification {
        flex-direction: column;
        gap: 20px;
      }

      .notification-left {
        flex-direction: column;
        align-items: flex-start;
      }

      .close-btn {
        align-self: flex-end;
      }
    }
 


    main {
      max-width: 900px;
      margin: 40px auto;
      padding: 0 20px;
    }

    h1 {
      font-size: 40px;
      font-weight: 300;
      margin-bottom: 10px;
    }

    .subtext {
      font-style: italic;
      color: #555;
      margin-bottom: 30px;
    }

    .question-box {
      background: #f2f2f2;
      padding: 30px;
      border-radius: 4px;
      margin-bottom: 30px;
    }

    .question-title {
      font-weight: bold;
      font-size: 18px;
      margin-bottom: 20px;
    }

    .radio-group {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .radio-group label {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
    }

    input[type="radio"] {
      transform: scale(1.3);
    }

    .required {
      color: red;
      margin-left: 5px;
    }

    .input-group {
      margin-bottom: 25px;
    }

    .input-group label {
      display: block;
      margin-bottom: 10px;
      font-weight: bold;
      font-size: 15px;
    }

    .input-group input,
    .input-group select {
      width: 100%;
      padding: 14px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 2px;
    }

    #additional-fields {
      display: none;
    }

    .btn-submit {
      display: block;
      width: 200px;
      padding: 14px;
      background-color: #d81b60;
      color: white;
      font-size: 16px;
      font-weight: bold;
      border: none;
      cursor: pointer;
      margin: 30px auto 0;
      text-align: center;
    }

    .btn-submit:hover {
      background-color: #c2185b;
    }

    @media (max-width: 768px) {
      .radio-group {
        flex-direction: column;
        align-items: flex-start;
      }
    }



    header {
      background: #000;
      padding: 20px 0;
    }

    .nav-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding: 0 20px;
    }

    .nav-container img {
      height: 60px;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      margin-left: 30px;
      font-size: 18px;
      font-weight: bold;
      display: inline-block;
      position: relative;
    }

    nav a:hover::after,
    nav a.active::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      height: 4px;
      width: 100%;
      background: #fff;
    }

    main {
      max-width: 900px;
      margin: 40px auto;
      padding: 0 20px;
    }

    h1 {
      font-size: 40px;
      font-weight: 300;
      margin-bottom: 10px;
    }

    .subtext {
      font-style: italic;
      color: #555;
      margin-bottom: 30px;
    }

    .question-box {
      background: #f2f2f2;
      padding: 30px;
      border-radius: 4px;
    }

    .question-title {
      font-weight: bold;
      font-size: 18px;
      margin-bottom: 20px;
    }

    .radio-group {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .radio-group label {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
    }

    input[type="radio"] {
      transform: scale(1.3);
    }

    .required {
      color: red;
      margin-left: 5px;
    }

    footer {
      background: #000;
      color: #fff;
      padding: 30px 20px;
      text-align: center;
      font-size: 14px;
    }

    footer a {
      color: #fff;
      text-decoration: underline;
      margin: 0 10px;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto 20px;
      align-items: center;
    }

    .footer-bottom {
      color: #ccc;
      font-size: 13px;
    }

    @media (max-width: 768px) {
      .nav-container {
        flex-direction: column;
        align-items: flex-start;
      }

      nav {
        margin-top: 15px;
      }

      .radio-group {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-top {
        flex-direction: column;
        gap: 15px;
      }
    }