/* Reset and base styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  background: linear-gradient(to bottom, #f0f8ff, #ffffff);
  color: #1a1a1a;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 2em;
}

/* Header styles */
header {
  text-align: center;
  padding: 1em 0;
  background-color: #002868;
  color: white;
  border-bottom: 5px solid #bf0a30;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 1.2em;
  font-style: italic;
  color: #f8f8f8;
}

/* Section styles */
section {
  margin: 2em 0;
  padding: 1em;
  background-color: #f5f5f5;
  border-left: 5px solid #002868;
  border-radius: 8px;
}

section h2 {
  color: #bf0a30;
  margin-top: 0;
}

/* Form styles */
.message-form form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

input[type="text"],
input[type="tel"],
textarea {
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

textarea {
  resize: vertical;
}

.buttons {
  display: flex;
  gap: 1em;
}

button {
  padding: 0.5em 1em;
  font-size: 1em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background-color: #002868;
  color: white;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #bf0a30;
}

/* Footer styles */
footer {
  text-align: center;
  padding: 1em;
  background-color: #002868;
  color: white;
  margin-top: 2em;
  border-top: 5px solid #bf0a30;
}
