body {
<p>We will generally ask for the following types of personal information:<br />
  &nbsp;&nbsp;• name, address , email and contact details;<br />
  &nbsp;&nbsp;• date of birth;<br />
  &nbsp;&nbsp;• gender; and/or<br />
  &nbsp;&nbsp;• information about your use of our product or service</p>  margin: 0;
  padding: 0;
  min-height: 100vh; /* Allow scrolling naturally */
  background: url('../beach.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  color: #000;
}

.info-content {
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  max-width: 800px;
  width: 90%;
  text-align: left;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 20px auto; /* Center and ensure margin at top */
}

.info-content p {
  margin: 5px 0;
  font-size: 1rem;
  line-height: 1.4;
}

.info-content a {
  color: #000;
  text-decoration: underline;
}

.header-container {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center elements */
  text-align: center;
}

.logo {
  display: block; /* Ensure it appears on its own line */
  width: 150px;
  height: auto; /* Maintain aspect ratio */
}

.header-text {
  text-align: center; /* Keep text centered */
  width: 100%; /* Ensures it appears as a full-width block */
}

input, button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  background-color: #28a745; /* Restores green color */
  color: white; /* Ensures text is visible */
  font-size: 200%; /* Increases text size */
}

button:hover {
  background-color: #218838; /* Darker green on hover */
}

/* radio table styling */
.radio-table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  table-layout: fixed; /* Ensures consistent column width */
}

.radio-table td {
  padding: 0; /* Remove extra padding causing gaps */
  border: 1px solid #ccc;
  height: 100%; /* Ensures full height coverage */
}

/* Hide the actual radio button */
.radio-table input[type="radio"] {
  display: none;
}

.radio-table label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px; /* Even spacing */
  margin: 0; /* Ensures no extra gaps */
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  cursor: pointer;
}

/* Change color when selected */
.radio-table input[type="radio"]:checked + label {
  background-color: #28a745; /* Change this color as needed */
  color: white;
  font-weight: bold;
}

/* full color blocks */
.radio-table td:has(input[type="radio"]:checked) {
  background-color: #28a745; /* Ensures the full cell changes color */
}

/* Adjust input fields to stay within a defined area */
input[type="text"],
input[type="tel"] {
  border-radius: 5px;
  display: block; /* Ensures label remains above */
  box-sizing: border-box;
}

