  /* Service detail styles */
        .service-detail {
          background: rgba(255, 255, 255, 0.95);
          border-radius: 25px;
          padding: 50px;
          margin-bottom: 60px;
          box-shadow: var(--shadow-medium);
          backdrop-filter: blur(10px);
          border: 1px solid var(--border-soft);
          position: relative;
          overflow: hidden;
        }

        .service-detail::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 6px;
          background: var(--gradient-pink);
        }

        .service-detail--purple::before {
          background: var(--gradient-primary);
        }

        .service-detail--gold::before {
          background: var(--gradient-gold);
        }

        .service-detail--blue::before {
          background: var(--gradient-accent);
        }

        .service-header {
          display: flex;
          align-items: center;
          margin-bottom: 40px;
        }

        .service-icon {
          width: 80px;
          height: 80px;
          border-radius: 20px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 30px;
          box-shadow: var(--shadow-medium);
          font-size: 36px;
        }

        .service-icon--purple {
          background: var(--gradient-primary);
          color: white;
        }

        .service-icon--pink {
          background: var(--gradient-pink);
          color: white;
        }

        .service-icon--gold {
          background: var(--gradient-gold);
          color: var(--primary-navy);
        }

        .service-icon--blue {
          background: var(--gradient-accent);
          color: white;
        }

        .service-title {
          font-family: 'Playfair Display', serif;
          font-size: 32px;
          font-weight: 600;
          color: var(--text-dark);
          margin: 0;
          letter-spacing: -0.5px;
        }

        .service-subtitle {
          font-size: 18px;
          color: var(--text-light);
          margin: 8px 0 0 0;
          font-weight: 400;
        }

        .service-description {
          font-size: 18px;
          line-height: 1.8;
          color: var(--text-medium);
          margin-bottom: 40px;
        }

        .service-features {
          margin-bottom: 40px;
        }

        .features-title {
          font-size: 24px;
          font-weight: 600;
          color: var(--text-dark);
          margin-bottom: 25px;
          font-family: 'Playfair Display', serif;
        }

        .features-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 25px;
        }

        .feature-item {
          display: flex;
          align-items: flex-start;
          padding: 20px;
          background: var(--pink-subtle);
          border-radius: 15px;
          border-left: 4px solid var(--accent-pink);
        }

        .service-detail--purple .feature-item {
          background: var(--navy-subtle);
          border-left-color: var(--primary-navy);
        }

        .service-detail--gold .feature-item {
          background: var(--gold-subtle);
          border-left-color: var(--primary-gold);
        }

        .service-detail--blue .feature-item {
          background: var(--navy-subtle);
          border-left-color: var(--accent-blue);
        }

        .feature-icon {
          width: 24px;
          height: 24px;
          margin-right: 15px;
          margin-top: 2px;
          flex-shrink: 0;
        }

        .feature-text {
          font-size: 16px;
          color: var(--text-medium);
          line-height: 1.6;
          margin: 0;
        }

        .service-process {
          margin-bottom: 40px;
        }

        .process-steps {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 30px;
          margin-top: 30px;
        }

        .process-step {
          text-align: center;
          position: relative;
        }

        .step-number {
          width: 60px;
          height: 60px;
          background: var(--gradient-pink);
          color: white;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 24px;
          font-weight: 700;
          margin: 0 auto 20px;
          box-shadow: var(--shadow-medium);
        }

        .service-detail--purple .step-number {
          background: var(--gradient-primary);
        }

        .service-detail--gold .step-number {
          background: var(--gradient-gold);
          color: var(--primary-navy);
        }

        .service-detail--blue .step-number {
          background: var(--gradient-accent);
        }

        .step-title {
          font-size: 18px;
          font-weight: 600;
          color: var(--text-dark);
          margin-bottom: 10px;
        }

        .step-description {
          font-size: 15px;
          color: var(--text-medium);
          line-height: 1.6;
        }

        .service-pricing {
          background: var(--bg-soft);
          padding: 35px;
          border-radius: 20px;
          text-align: center;
          border: 2px solid var(--border-soft);
        }

        .pricing-amount {
          font-size: 48px;
          font-weight: 700;
          background: var(--gradient-pink);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          margin-bottom: 10px;
        }

        .service-detail--purple .pricing-amount {
          background: var(--gradient-primary);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .service-detail--gold .pricing-amount {
          background: var(--gradient-gold);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .service-detail--blue .pricing-amount {
          background: var(--gradient-accent);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
        }

        .pricing-duration {
          font-size: 16px;
          color: var(--text-light);
          margin-bottom: 25px;
        }

        /* CTA Section */
        .cta-section {
          background: var(--gradient-primary);
          padding: 80px 0;
          text-align: center;
          color: white;
        }

        .cta-title {
          font-family: 'Playfair Display', serif;
          font-size: 36px;
          font-weight: 600;
          margin-bottom: 20px;
        }

        .cta-description {
          font-size: 20px;
          margin-bottom: 40px;
          opacity: 0.9;
        }

        .btn--white {
          background: white;
          color: var(--primary-navy);
        }

        .btn--white:hover {
          background: var(--pink-subtle);
          color: var(--primary-navy);
        }

        .sect--padding-top {
          padding-top: 150px;
        }

        /* Responsive dla podstrony oferta */
        @media (max-width: 768px) {
          .sect--padding-top {
            padding-top: 180px;
          }

          .service-detail {
            padding: 30px 25px;
            margin-bottom: 40px;
          }

          .service-header {
            flex-direction: column;
            text-align: center;
            margin-bottom: 30px;
          }

          .service-icon {
            margin-right: 0;
            margin-bottom: 20px;
          }

          .service-title {
            font-size: 28px;
          }

          .features-grid {
            grid-template-columns: 1fr;
          }

          .process-steps {
            grid-template-columns: 1fr;
          }

          .pricing-amount {
            font-size: 36px;
          }

          .cta-title {
            font-size: 28px;
          }

          .cta-description {
            font-size: 18px;
          }
        }
         .service-pricing {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            margin: 50px auto;
            max-width: 400px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .pricing-amount {
            font-size: 36px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 10px;
        }

        .pricing-duration {
            color: #64748b;
            font-size: 16px;
            margin-bottom: 25px;
        }

        .btn {
            border: none;
            padding: 16px 32px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn--blue {
            background: #3b82f6;
            color: white;
        }

        .btn--blue:hover {
            background: #2563eb;
        }

        .btn--width {
            width: 100%;
        }

        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
        }

        .modal-content {
            background-color: white;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 40px;
            border-radius: 20px;
            width: 80%;
            max-width: 500px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }


        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover {
            color: black;
        }

        .person-option {
            background: #f8f9fa;
            border-radius: 10px;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .person-option:hover {
            border-color: #3b82f6;
            background: #eff6ff;
        }

        .hidden {
            display: none;
        }