body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: url('image3.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
}

.contact-container {
  max-width: 600px;
  margin: 50px auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

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

.logo {
  height: 60px;
}

.contact-content p {
  font-size: 16px;
  margin-bottom: 15px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 10px 0;
}

ul a {
  text-decoration: none;
  color: #0284c7;
  font-weight: bold;
}

ul a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #666;
}

