body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0; padding: 0; background: #f9fafb; color: #333;
}
header {
  background: #0078a3;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}
header h1 {
  margin: 0; font-size: 2.2rem;
}
section {
  max-width: 900px;
  /* Change the margin to align to the left */
  margin: 2rem 0; /* This removes auto horizontal margin */
  padding: 0 1rem;
  text-align: left; /* This aligns inline content (like text) to the left */
}
h2 {
  color: #0078a3;
  text-align: left; /* This aligns inline content (like text) to the left */
  border-bottom: 3px solid #42b883;
  padding-bottom: 0.3rem;
}
ul {
  text-align: left; /* This aligns inline content (like text) to the left */list-style: none;
  padding-left: 0;
}
ul li::before {
  text-align: left; /* This aligns inline content (like text) to the left */
  content: "✓";
  color: #42b883;
  margin-right: 8px;
  
}
p, li {
  text-align: left; /* This aligns inline content (like text) to the left */
  line-height: 1.5;
}

/* In your /includes/style.css file or within the <style> block in header.php */

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: 100%; /* Make them take up 100% of their parent container's width */
    padding: 8px; /* Add some padding inside the fields */
    margin-bottom: 10px; /* Add space below each field */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    border: 1px solid #ccc; /* Add a light border */
    border-radius: 4px; /* Slightly rounded corners */
}

form button[type="submit"] {
    /* Optional: Style the submit button */
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

form button[type="submit"]:hover {
    background-color: #45a049;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #eee;
  color: #555;
  font-size: 0.9rem;
}
a {
  color: #0078a3;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  header h1 {
    font-size: 1.6rem;
  }
}
