 body {
      font-family: sans-serif;
      background: #f9f9f9;
      
    }

    .accordion {
      max-width: 1000px;
      margin: auto;
    }

    .accordion-item {
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 10px;
      background: #fff;
      overflow: hidden;
    }

    .accordion-header {
      padding: 1rem;
      cursor: pointer;
      font-size: 1.2rem;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      border-bottom: 1px solid #eee;
    }

      .accordion-header:hover {
      padding: 1rem;
      cursor: pointer;
      font-size: 1.2rem;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #e0dff2;
      border-bottom: 1px solid #5f55e9;
    }

    .accordion-body {
      display: none;
      padding: 1rem;
      animation: fadeIn 0.3s ease-in-out;
    }

    .service-card {
      display: inline-block;
      width: 30%;
      min-width: 250px;
      margin: 10px;
      border: 1px solid #ddd;
      border-radius: 8px;
      background: #fafafa;
      text-align: center;
      padding: 1rem;
    }

    .service-card img {
      width: 100%;
      border-radius: 8px;
    }

    .service-title {
      font-weight: bold;
      margin-top: 0.8rem;
    }

    .service-description {
      font-size: 0.9rem;
      color: #444;
      margin: 0.5rem 0;
    }

    .service-price {
      font-size: 1.1rem;
      color: #000;
      margin: 0.5rem 0;
    }

    .submit-btn {
      padding: 0.5rem 1rem;
      background: #000;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .accordion-header span {
      font-size: 1.5rem;
      transition: transform 0.3s;
    }

    .accordion-header.active span {
      transform: rotate(45deg);
    }

    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }

    @media (max-width: 768px) {
      .service-card {
        width: 100%;
      }
    }

    /* Popup Overlay */
#shop-popup-form.popup-form-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Form Container */
.popup-form-content {
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
  position: relative;
  font-family: "Open Sans", sans-serif;
}

.popup-form-content input, .popup-form-content select, .popup-form-content textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    background: #ffffff;
    color: #000000;
}
/* Close Button */
.popup-form-content .close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
}

/* Headline */
.popup-form-content h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #47b2e4;
  text-align: center;
}

/* Inputs */
.popup-form-content input,
.popup-form-content textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  resize: none;
  box-sizing: border-box;
}

/* Submit Button */
.popup-form-content button[type="submit"] {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background-color: #47b2e4;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-form-content button[type="submit"]:hover {
  background-color: #3498db;
}
@media (max-width: 480px) {
  .popup-form-content {
    padding: 25px 18px;
    width: 90%;
  }
}
