body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background-color: #ffe4e1;
  color: #333;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

.logo {
  max-width: 120px;
  border-radius: 20%;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
  color: #b22222;
  font-size: 2.5rem;
  margin-top: 10px;
}

header p {
  font-style: italic;
  color: #777;
}

form {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input[type="file"], select, button {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

button {
  background-color: #b22222;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}

button:hover {
  background-color: #8b1a1a;
}

.features {
  margin-top: 40px;
  background-color: #fff5f5;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.features h2 {
  color: #b22222;
  margin-bottom: 10px;
}

.features ul {
  list-style: none;
  padding-left: 0;
}

.features li {
  margin: 10px 0;
  font-size: 1.1rem;
}

footer {
  margin-top: 60px;
  text-align: center;
  color: #555;
  font-size: 0.9rem;
}

footer nav a {
  margin: 0 10px;
  color: #b22222;
  text-decoration: none;
}

footer nav a:hover {
  text-decoration: underline;
}

.other-sites {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.other-sites li {
  display: inline-block;
  margin: 5px 10px;
}

.other-sites a {
  color: #b22222;
  text-decoration: none;
}

.other-sites a:hover {
  text-decoration: underline;
}
