body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #f2f2f2;
  text-align: center;
}

.header {
  background: white;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

.banner {
  max-width: 100%;
  height: auto;
}

.logo-section {
  margin-top: 10px;
}

.logo {
  width: 280px;
  height: auto;
}

h1 {
  font-size: 28px;
  margin: 10px 0;
  color: #222;
}

.quick-links {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 24px;
}

.quick-links a {
  text-decoration: none;
  background: #e6f4f1;
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.2s;
}

.quick-links a:hover {
  transform: scale(1.1);
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 30px 20px;
}

.button {
  display: flex;
  align-items: center;
  background: white;
  padding: 15px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: black;
  transition: transform 0.2s;
}

.button:hover {
  transform: translateY(-3px);
}

.button img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}
