.service-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0;
}

.service-description {
  flex: 1 1 50%;
}

.service-description h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #13272B;
}

.service-description p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #13272B;
}

.service-description ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-description ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #13272B;
}

.icon-done {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

.service-image {
  flex: 1 1 40%;
  text-align: center;
}

.service-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .service-details {
    flex-direction: column;
  }
  .service-description, .service-image {
    flex: 1 1 100%;
  }
  .mobile-only {
    display: block;
    margin: 20px 0;
  }
  .desktop-only {
    display: none;
  }
}

.service-card {
  background-color: #f8f4f0;
  padding: 40px 20px;
  border-radius: 12px;
  margin: 60px auto; 
  max-width: 1200px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: visible;
}

.service-card:hover {
  background-color: #f3f2f1;
}

.service-card:hover .primary-btn {
  transform: scale(1.02);
}

.service-card-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* Badge Styling */
.badge {
  position: absolute;
  top: -15px; /* Half outside, half inside */
  right: 20px;
  background-color: #5B9F99;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.7rem;
  border-radius: 20px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .badge {
    position: absolute;
    top: -15px;
    right: 20px;
    align-self: center;
  }
}

.service-card-left {
  flex: 1 1 200px;
  text-align: center;
}
.service-card-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}
.service-card-left h2 {
  font-size: 2rem;
  color: #13272B;
  margin-bottom: 5px;
}
.service-card-left p {
  font-size: 1rem;
  color: #5B9F99;
  margin-bottom: 5px;
}
.price-label {
  font-size: 1rem;
  color: #13272B;
  font-weight: 600;
}
.price {
  font-size: 2rem;
  color: #5B9F99;
  font-weight: 700;
}
.service-card-right {
  flex: 1 1 200px;
}
.service-card-right ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.service-card-right ul li {
  font-size: 1rem;
  color: #13272B;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.service-card-right ul li img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.primary-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #5B9F99;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.primary-btn:hover {
  background-color: #4f8883;
}
@media (max-width: 768px) {
  .service-card-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .service-card-left, .service-card-right {
    flex: 1 1 100%;
  }
  .service-card-right ul {
    text-align: left;
  }
}

.service-image + .pharagraph{
    margin-top: 1rem;
}
