/* Reset some default styles for consistency */
body, h1, h2, h3, p, input, button {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  color: #333;
}

.header {
  padding: 10px;
  text-align: center;
  background-color: #ff9393;
  color: #fff;
}

.page_wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.table_cell {
  width: 50%;
}

.content {
  padding: 20px;
}

.content h3 {
  color: #ff9393;
}

.content img {
  max-width: 100%;
}

.white {
  background-color: #fff;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input[type="email"] {
  font-size: 16px;
  padding: 12px;
  margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  max-width: 300px;
}

button {
  background-color: #007bff;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  max-width: 300px;
}

.disclaimer {
  margin-top: 30px;
  font-size: 14px;
}

.footer {
  text-align: center;
  background-color: #ff9393;
  padding: 10px;
}

.table {
  display: flex;
  justify-content: space-around;
}

.table_cell {
  flex-basis: 25%;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* The provided CSS remains unchanged. Please use the CSS you have provided. */
