
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #88a4b6;
  color: #333;
  padding-bottom: 60px;
}

a {
  text-decoration: none;
  color: #ffffff;
}


header {
  background: #0e76a8;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

nav {
  background-color: #333;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 1rem;
}

nav a {
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
  transition: background 0.3s ease;
}

nav a:hover {
  background: #0e76a8;
  border-radius: 5px;
}


section {
  padding: 2rem;
  margin: 1rem auto;
  max-width: 900px;
  background: rgb(218, 162, 162);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

section h2 {
  color: #0e76a8;
  margin-bottom: 1rem;
  border-left: 5px solid #0e76a8;
  padding-left: 10px;
}

ul {
  list-style: disc inside;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

form input, form textarea {
  width: 100%;
  padding: 1rem;
  margin: 0.5rem 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

button {
  background-color: #0e76a8;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #095e8e;
}


footer {
  text-align: center;
  padding: 1.5rem;
  background: hsl(199, 52%, 41%);
  color: rgb(116, 64, 64);
  position: fixed;
  bottom: 0;
  width: 100%;
}


@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  section {
    margin: 1rem;
    padding: 1rem;
  }
}


footer a {
  color: rgba(19, 59, 54, 0.568);
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #0e76a8;
}














