/* Base styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f3ee;
  color: #333;
  line-height: 1.6;
}

header.hero {
  background: url('template-background.jpg') no-repeat center center/cover;
  text-align: center;
  padding: 4rem 2rem;
  color: #000; /* Changed from white to black */
}

header.hero .logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

header.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #000; /* Ensure heading is black */
}

header.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #000; /* Ensure paragraph text is black */
}

.btn {
  display: inline-block;
  background-color: #426d44;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #365a37;
}

section {
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2a4d2f;
}

section h3, section h4 {
  color: #3c593d;
  margin-top: 1.5rem;
}

ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, select, textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"] {
  background-color: #426d44;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

button[type="submit"]:hover {
  background-color: #365a37;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #2a4d2f;
  color: white;
}

@media (max-width: 600px) {
  header.hero h1 {
    font-size: 2rem;
  }
  section {
    padding: 2rem 1rem;
  }
}

/* Transparent wrapper for the Request a Quote button */
.blank-background {
  background-color: transparent;
  display: inline-block;
  padding: 1rem 0;
}
