/* Reset default margin and padding for all elements */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}

/* Set a global background color or image (if needed) */
body {
  background-color: #f5f5f5;
}

/* Center the entire contact form on the page */
.contact-form-container {
  max-width: 600px;
  margin: 0 auto; /* Center the container horizontally on the page */
  margin-top: 200px; /*centers element vertically */
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8); /* Transparent white background */
  border-radius: 10px;
}

/* Style for labels (optional) */
label {
  font-weight: bold;
}

/* Style for input fields and textarea */
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  display: block; /* Convert inputs to block elements to show them on separate lines */
  width: 96%; /* Take up the full width of the container */
  margin-bottom: 15px; /* Add spacing between each input field */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Style for select dropdown */
select {
  display: block; /* Convert select to block element to show it on a separate line */
  width: 100%; /* Take up the full width of the container */
  margin-bottom: 15px; /* Add spacing between the select and other input fields */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Style for the submit button */
button {
  display: block; /* Convert button to block element to show it on a separate line */
  margin-top: 20px; /* Add spacing between the button and other input fields */
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

/* Thank You Page (Hidden Initially) */
.thank-you {
  max-width: 600px;
  margin: 0 auto; /* Center the container horizontally on the page */
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8); /* Transparent white background */
  border-radius: 10px;
}

.contact-form-container .instructions{
  margin-bottom: 10px;
}

.instructions {
  background-color: #f8f8f8;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}
.instructions p {
  margin: 0;
  font-size: 16px;
  color: #333;
}
