/* Reset and base styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f2f2f2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
.logo-container {
  margin-top: 40px;
  text-align: center;
  animation: fadeIn 2s ease-in;
}
.logo {
  max-width: 400px;
  width: 100%;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 20px; /* Add internal space on all sides */
  margin-top: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box; /* Ensures padding doesn't break the width */
}
.contact-form label {
  display: block;
  margin-bottom: 15px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
  box-sizing: border-box; /* This is the key fix */
}
.contact-form button {
  background: #ec1c24; /* Change from #333 to red */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: darkred; /* Optional: a darker shade on hover */
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}