/* Reset and base styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdf6f0;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Header styling */
header {
  background-color: #b30000;
  color: white;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header h1 {
  margin: 0;
  font-size: 2em;
}

header p {
  margin-top: 5px;
  font-style: italic;
}

/* Main section container */
section {
  padding: 30px;
  max-width: 600px;
  margin: 40px auto;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Section heading */
h2 {
  color: #b30000;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8em;
}

/* Form layout */
form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 15px;
  font-weight: bold;
  color: #444;
}

input, textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #b30000;
  outline: none;
}

/* Submit button */
button {
  margin-top: 25px;
  padding: 12px;
  background-color: #b30000;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
