    h1 {
      text-align: center;
      color: #d35d90;
      margin-bottom: 20px;
    }

    .
  .question-container {
    padding: 15px;
    margin-bottom: 35px;
    border: 2px solid #ccc;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .question {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
  }

    .question h2 {
      font-size: 18px;
      color: #d35d90;
      margin-bottom: 10px;
    }

    .radio-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .radio-group label {
      display: flex;
      align-items: center;
      padding: 10px 15px;
      background-color: #fef2f4;
      border: 1px solid #f3dcdc;
      border-radius: 25px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .radio-group input[type="radio"] {
      display: none;
    }

    .radio-group input[type="radio"]:checked + label {
      background-color: #d35d90;
      color: #fff;
      border: 1px solid #d35d90;
    }

    .radio-group label:hover {
      background-color: #fce4ec;
      border-color: #f3b8d2;
    }

    .custom-button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background-color: #d35d90;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.custom-button:hover {
  background-color: #b74a79;
}


    /* Modal Styles */
    .modal {
      display: none; /* Hidden by default */
      position: fixed;
      z-index: 1;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
      overflow: auto;
      padding-top: 60px;
    }

    .modal-content {
      background-color: #fff;
      font-size: 16px;
      margin: 5% auto;
      padding: 20px;
      border-radius: 10px;
      width: 80%;
      max-width: 500px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .modal-header {
      font-size: 20px;
      font-weight: bold;
      color: #d35d90;
      margin-bottom: 10px;
    }

    .modal-body {
      font-size: 16px;
      color: #333;
    }

    .close {
      color: #aaa;
      font-size: 28px;
      font-weight: bold;
      position: absolute;
      top: 5px;
      right: 15px;
      cursor: pointer;
    }

    .close:hover,
    .close:focus {
      color: #000;
      text-decoration: none;
      cursor: pointer;
    }