  
        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
            background: #FFFFFF;
        } */

        /* Product Page Section */
        .product-page-section {
            background: linear-gradient(135deg, #FFFAE4 0%, #FFFAE4 100%);
            padding: 8rem 2rem 6rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .product-page-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        /* Two Column Grid */
        .product-page-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }

        /* ============================================
           LEFT SIDE - PRODUCT DETAILS
        ============================================ */
        /* .product-details-left {
            background: white;
            padding: 3.5rem;
            border-radius: 25px;
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
            border: 3px solid rgba(74, 144, 226, 0.1);
        } */

        /* Product Badge */
        .product-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
            color: #1A202C;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 2rem;
        }

        .product-badge-icon {
            font-size: 1rem;
        }

        /* Product Name */
        .product-name {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 500;
            color: #1A202C;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .product-name-highlight {
            background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Product Description */
        .product-description {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #4A5568;
            font-weight: 500;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid #E8F4F8;
        }

        /* Price Section */
        .product-price-section {
            margin-bottom: 3rem;
        }

        .product-price-label {
            font-size: 1rem;
            color: #718096;
            font-weight: 600;
            margin-bottom: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-price-wrapper {
            display: flex;
            align-items: baseline;
            gap: 1rem;
            margin-bottom: 0.4rem;
        }

        .product-price-currency {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: #1A202C;
        }

        .product-price-amount {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.1rem, 4vw, 4.2rem);
            font-weight: 650;
            color: #1A202C;
            line-height: 1;
        }

        .product-price-vat {
            font-size: 1.1rem;
            color: #718096;
            font-weight: 600;
            font-style: italic;
        }

        /* Features List */
        .product-features-heading {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: #1A202C;
            margin-bottom: 1.5rem;
        }

        .product-features-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .product-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem 1.2rem;
            background: linear-gradient(135deg, product-feature-text 0%, product-feature-text 100%);
            border-radius: 12px;
            border-left: 4px solid #FCAF1B;
            transition: all 0.3s ease;
        }

        .product-feature-item:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 25px #FCAF1B;
        }

        .product-feature-icon {
            width: 26px;
            height: 26px;
            background: #FCAF1B;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 900;
            font-size: 0.85rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .product-feature-text {
            font-size: 1.05rem;
            color: #006EA6;
            font-weight: 600;
            line-height: 1.6;
        }

        /* ============================================
           RIGHT SIDE - CONTACT FORM
        ============================================ */
        .product-form-wrapper {
            background: white;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
            border: 3px solid #FCAF1B;
            position: sticky;
            top: 100px;
        }

        .product-form-heading {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            color: #1A202C;
            text-align: center;
            margin-bottom: 0.8rem;
        }

        .product-form-subtext {
            text-align: center;
            font-size: 1.05rem;
            color: #4A5568;
            font-weight: 600;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 3px solid #E8F4F8;
        }

        /* Form Styling */
        .form-group {
            margin-bottom: 1.8rem;
        }

        .form-group label {
            display: block;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: #1A202C;
            margin-bottom: 0.6rem;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 1rem 1.2rem;
            font-size: 1rem;
            font-weight: 500;
            border: 2px solid #E8F4F8;
            border-radius: 12px;
            background: #F7FAFC;
            color: #1A202C;
            transition: all 0.3s ease;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4A90E2;
            background: white;
            box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
        }

        .form-group input::placeholder {
            color: #A0AEC0;
        }

        .form-group input[readonly] {
            background: linear-gradient(135deg, #FFFAE4 0%, #FFF5E1 100%);
            cursor: not-allowed;
            font-weight: 700;
            color: #B45309;
            border-color: #FFD700;
        }

        .form-group select {
            cursor: pointer;
        }

        /* Submit Button */
        .btn-buy {
            width: 100%;
            padding: 1.5rem 2rem;
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
            color: white;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 12px 35px rgba(74, 144, 226, 0.4);
            position: relative;
            overflow: hidden;
        }

        .btn-buy::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn-buy:hover::before {
            left: 100%;
        }

        .btn-buy:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 50px rgba(74, 144, 226, 0.5);
        }

        /* Security Badge */
        .form-security-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            margin-top: 1.5rem;
            padding: 1rem;
            background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
            border-radius: 10px;
            border: 1px solid #86EFAC;
        }

        .form-security-icon {
            font-size: 1.3rem;
            color: #22C55E;
        }

        .form-security-text {
            font-size: 0.95rem;
            font-weight: 700;
            color: #166534;
        }

        /* ============================================
           RESPONSIVE DESIGN
        ============================================ */
        @media (max-width: 1024px) {
            .product-page-grid {
                gap: 4rem;
            }

            .product-details-left,
            .product-form-wrapper {
                padding: 3rem;
            }

            .product-form-wrapper {
                position: static;
            }
        }

        @media (max-width: 768px) {
            .product-page-section {
                padding: 6rem 1.5rem 4rem;
            }

            .product-page-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .product-details-left,
            .product-form-wrapper {
                padding: 2.5rem;
            }

            .product-name {
                font-size: clamp(2rem, 6vw, 3.5rem);
            }

            .product-description {
                font-size: 1.1rem;
            }

            .product-price-amount {
                font-size: clamp(3rem, 8vw, 5rem);
            }

            .product-price-currency {
                font-size: 2rem;
            }

            .product-form-heading {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .product-page-section {
                padding: 5rem 1rem 3rem;
            }

            .product-details-left,
            .product-form-wrapper {
                padding: 2rem;
            }

            .product-badge {
                font-size: 0.8rem;
                padding: 0.5rem 1.2rem;
            }

            .product-name {
                font-size: clamp(1.8rem, 7vw, 3rem);
                margin-bottom: 1rem;
            }

            .product-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .product-price-amount {
                font-size: clamp(2.5rem, 9vw, 4.5rem);
            }

            .product-price-currency {
                font-size: 1.8rem;
            }

            .product-price-vat {
                font-size: 1rem;
            }

            .product-features-list {
                gap: 1rem;
            }

            .product-feature-item {
                padding: 0.9rem 1rem;
            }

            .product-feature-text {
                font-size: 0.95rem;
            }

            .product-form-heading {
                font-size: 1.6rem;
            }

            .product-form-subtext {
                font-size: 1rem;
            }

            .form-group {
                margin-bottom: 1.5rem;
            }

            .form-group input,
            .form-group select {
                padding: 0.9rem 1rem;
                font-size: 0.95rem;
            }

            .btn-buy {
                padding: 1.3rem 1.5rem;
                font-size: 1.15rem;
            }
        }

        @media (min-width: 1440px) {
            .product-page-container {
                max-width: 1600px;
            }

            .product-page-section {
                padding: 9rem 3rem 7rem;
            }
        }
    

          
        /* SECTION BASE */
.trust-section {
  background: #fffbe6;
  padding: 80px 20px;
}

.trust-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* HEADING */
.trust-heading {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #111;
}

/* STATS GRID */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid #2b8cff;
}

/* EACH ITEM */
.trust-item {
  padding: 0 30px;
  border-right: 1px solid #2b8cff;
  text-align: left;
}

/* NUMBERS */
.trust-item h3 {
  font-size: 48px;
  font-weight: 700;
  color: #0066b3;
  margin-bottom: 12px;
  line-height: 1.1;
}

.trust-item h3 span {
  font-size: 40px;
}

/* DESCRIPTION */
.trust-item p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* TABLET */
@media (max-width: 992px) {
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    border-left: none;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid #2b8cff;
    padding: 30px 20px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .trust-heading {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }

  .trust-item {
    text-align: center;
    padding: 25px 15px;
  }

  .trust-item h3 {
    font-size: 40px;
  }
}

    