/* Full screen background */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100%;
  background: url('../images/background.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container for buttons */
.container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

/* Button styling */
.service-button {
  display: block;
  padding: 1rem 3rem;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.3); /* 30% translucent */
  border-radius: 10px;
  transition: background 0.3s, transform 0.2s;
}

.service-button:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.05);
