.services {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}

.services h2 {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2577b5;
  text-align: center;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-card {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card img {
  width: 40%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.service-text {
  padding: 2rem;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-title {
  font-family: 'Lora', serif;
  font-size: 1.75rem;
  color: #2577b5;
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .service-card {
    flex-direction: column;
  }
  
  .service-card img {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }

  .service-text {
    width: 100%;
    padding: 1.5rem 1rem;
  }
}

.menu-close {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #1f2c3a;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 110;
}

.nav-links.active + .menu-close {
  display: block;
}

.menu-toggle.hidden {
  display: none;
}
