html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #c5eafc;
  font-family: 'Quicksand', sans-serif;
  color: #3a3a3a;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  }
  .lead_container {
    box-sizing: border-box;
    background: rgb(236, 252, 255);
    padding: 2rem;
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
  }
.container {
  background: rgb(236, 252, 255);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  word-wrap: break-word;
  max-height: 250px;
  overflow-y: auto;
}
.lower {
  display: block;
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  font-weight: bold;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.lower br {
  display: block;
  margin: 0;
  line-height: 0;
}

.links a {
    display: block;
    margin: 0.5rem 0;
    text-decoration: none;
    color: #1e90ff;
    font-weight: 600;
  }
.links a:hover {
    text-decoration: underline;
  }
@media (max-width: 480px) {
  .lead_container {
      padding: 1rem;
      margin: 1rem;
      max-height: none;
  }
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

form input,
form textarea {
  font-family: 'Quicksand', sans-serif;
  padding: 0.75rem;
  border: 2px solid #a0d9f6;
  border-radius: 12px;
  font-size: 1rem;
  background: #f7fcff;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  resize: vertical;

  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  text-align: left; 
}

form label {
  align-self: flex-start;
  font-weight: 600;
  color: #3a3a3a;
  margin-left: calc((100% - 400px) / 2);
}

form button[type="submit"] {
  padding: 0.75rem 1rem;
  border: none;
  background-color: #1e90ff;
  color: white;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  max-width: 400px;
}

form button[type="submit"]:hover {
  background-color: #1578d4;
}
.message-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  width: 90%;
  max-width: 1200px;
  padding: 2rem;
  box-sizing: border-box;
}

@media (min-width: 600px) {
  .message-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .message-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

  