/* style.css content placeholder */
h1 { color: #333; }
.menu-link {
  display: inline-block;
  padding: 10px 18px;
  background-color: #4b0082;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.menu-link:hover {
  background-color: #800080;
}

.services-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.service-block {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  width: 550px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.service-block:hover {
  transform: translateY(-5px);
}

.service-block img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-block .text {
  padding: 20px;
}

.service-block h2 {
  color: #003366;
  margin-bottom: 10px;
}

.service-block p {
  font-size: 16px;
  line-height: 1.6;
}

