
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FC93CC;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background-color: #C40909;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  font-size: 1.5rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav a {
  color: white;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.section {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.section h2 {
  margin-bottom: 1rem;
  color: #2c3e50;
  font-size: 1.8rem;
}

.section img {
  display: block;
  margin: 1rem 0;
  border-radius: 8px;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

#contact-form label {
  font-weight: bold;
}

#contact-form input,
#contact-form textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

#contact-form button {
  background-color: #0066cc;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}

#contact-form button:hover {
  background-color: #0052a3;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #eee;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    margin-top: 1rem;
    justify-content: center;
  }

  main {
    margin: 1rem auto;
  }
}