/* Container */
.services-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Section Title */
.section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

/* Service Block */
.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
}

/* Service Title */
.service-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Service Description */
.service-description {
  font-size: 16px;
  margin-bottom: 20px;
}

/* Service Button Container */
.service-button-container {
  text-align: center;
}

/* Service Button */
.service-button {
  font-size: 18px;
  padding: 10px 20px;
  background-color: pink;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-button:hover {
  background-color: red;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .service {
    flex-direction: column;
  }
}
