.service-button {
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  padding: 20px;
  text-align: center;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
}

.service-button:hover {
  background-color: #50BA87; /* Change to turquoise color on hover */
}

.service-button-content img {
  width: 80px; /* Adjust as needed */
  height: 80px; /* Adjust as needed */
  margin-bottom: 10px;
}

.service-button-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-button-content p {
  font-size: 16px;
  line-height: 1.6;
}

/* Style for main buttons */
.main-button {
  background-color: #ffffff;
  color: #333333;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 15px;
}

/* Green color for hovered and active button */
.main-button.green {
  background-color: #4caf50;
  color: #ffffff;
}

/* Style for subbuttons */
.subbutton {
  display: none;
  padding: 15px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

/* Show subbutton on main button hover */
.button-container:hover .subbutton {
  display: block;
}

/* Center alignment for text */
.button-container p {
  text-align: center;
}
