.elementor-3320 .elementor-element.elementor-element-cf4d7c4{--display:flex;}/* Start custom CSS for html, class: .elementor-element-1e907e2 */.services-section {
      max-width: 1000px;
      margin: auto;
    }

    .services-section h1 {
      font-size: 2rem;
      color: #111;
      margin-bottom: 2rem;
      text-align: center;
    }

    .services-section h1 span {
      color: #ff4081;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 1.2rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease forwards;
    }

    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
    .service-card:nth-child(5) { animation-delay: 0.5s; }
    .service-card:nth-child(6) { animation-delay: 0.6s; }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    }

    .service-card.highlight {
      background: #1e144f;
      color: #fff;
    }

    .service-card.highlight .book-btn {
      background: #fff;
      color: #1e144f;
    }

    .service-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 0.8rem;
    }

    .service-card h3 {
      margin: 0.5rem 0 0.3rem;
      font-size: 1rem;
      line-height: 1.4;
    }

    .price {
      font-weight: bold;
      margin: 0.5rem 0 1rem;
      font-size: 1.1rem;
      color: #444;
    }

    .service-card.highlight .price {
      color: #fff;
    }

    .book-btn {
      background-color: #ff4081;
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .book-btn:hover {
      transform: translateY(-2px);
      background-color: #e03a72;
    }/* End custom CSS */