/* style.css */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #fffaf5;
    color: #333;
  }
  header, footer {
    background-color: #c54b00;
    color: white;
    padding: 1em;
    text-align: center;
  }
  nav {
    background-color: #ff7a29;
    display: flex;
    justify-content: center;
    gap: 1em;
    padding: 0.8em;
  }
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  section {
    padding: 2em;
    max-width: 1000px;
    margin: auto;
  }
  h1, h2 {
    color: #c54b00;
  }
  form {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  input, textarea, select {
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  button {
    background: #c54b00;
    color: white;
    border: none;
    padding: 0.7em;
    cursor: pointer;
    border-radius: 4px;
  }
  button:hover {
    background: #a73f00;
  }

/* Contact form specific */
.contact-form {
    max-width: 520px;
    margin: 0 auto;      /* center horizontally */
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5em 2em;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-form label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: #444;
}

.contact-form input,
.contact-form textarea {
    margin-top: 0.3em;
}

.contact-title {
    text-align: center;
}
  footer {
    margin-top: 2em;
  }
  