body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
  padding: 40px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 90vh;
}

.logo {
  max-width: 150px;
  margin-bottom: 20px;
}

h1 {
  color: #e67e22;
  margin-bottom: 20px;
}

p {
  font-size: 1.1em;
  line-height: 1.6;
}

.signature {
  margin-top: 30px;
  font-style: italic;
  color: #555;
}

.contact-button {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #2980b9;
}

.phone {
  margin-top: 15px;
  font-size: 1em;
  color: #333;
}

.phone a {
  color: #3498db;
  text-decoration: none;
}

.phone a:hover {
  text-decoration: underline;
}

.footer {
  margin-top: 30px;
  font-size: 0.9em;
  color: #888;
}
