

        .section-gap {
            /* padding: 0px !important; */
        }

        .hero-section {
            text-align: center;
            padding: 80px 0 0px;
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0.95;
        }

        .billing-toggle {
            display: flex;
            justify-content: center;
            margin: 40px 0;
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 8px;
            backdrop-filter: blur(10px);
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }

        .billing-option {
            padding: 12px 24px;
            border: none;
            background: transparent;
            color: #000;
            cursor: pointer;
            border-radius: 40px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .billing-option.active {
            background: white;
            color: #667eea;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            /* margin-top: 60px; */
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        .pricing-card.featured {
            border-color: #a8b893;
            transform: scale(1.05);
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #a8b893;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .card-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .plan-name {
            background: #000;
            color: #fff;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }

        .featured .plan-name {
            background: #a8b893;
            color: white;
        }

        .price {
            font-size: 3.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 5px;
        }

        .price-period {
            color: #666;
            font-size: 1.1rem;
        }

        .features-list {
            list-style: none;
            margin: 30px 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .feature-item:last-child {
            border-bottom: none;
        }

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

        .check-icon {
            color: #4CAF50;
        }

        .cross-icon {
            color: #f44336;
        }

        .feature-text {
            flex: 1;
            color: #555;
        }

        .feature-value {
            color: #333;
            font-weight: 600;
            margin-left: auto;
        }

        .select-btn {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .select-btn:not(.featured-btn) {
            background: #f8f9fa;
            color: #666;
            border: 2px solid #e9ecef;
        }

        .select-btn:not(.featured-btn):hover {
            background: #e9ecef;
            transform: translateY(-2px);
        }

        .featured-btn {
            background: #a8b893;
            color: white;
            box-shadow: 0 10px 30px rgba(168, 184, 147, 0.3);
        }

        .featured-btn:hover {
            background: #96a582;
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(168, 184, 147, 0.4);
        }

        .waxing-section {
            background: white;
            padding: 80px 0;
            margin-top: 60px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #a8b893;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.2rem;
            margin-bottom: 50px;
        }

        .waxing-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin: 40px 0;
        }

        .table-header {
            background: #a8b893;
            color: white;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 1px;
        }

        .table-cell {
            padding: 20px;
            text-align: center;
            font-weight: 600;
        }

        .table-cell:first-child {
            text-align: left;
        }

        .table-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 1px;
            background: #f8f9fa;
        }

        .table-row:nth-child(even) {
            background: #fff;
        }

        .table-row .table-cell {
            background: inherit;
            padding: 18px 20px;
            color: #333;
            border-bottom: 1px solid #eee;
            font-weight: 500;
        }

        .corporate-section {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .corporate-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        }

        .corporate-content {
            position: relative;
            z-index: 2;
        }

        .corporate-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .corporate-subtitle {
            font-size: 1.3rem;
            margin-bottom: 50px;
            opacity: 0.9;
        }

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

        .process-step {
            background: rgba(255,255,255,0.1);
            padding: 40px 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .step-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .step-description {
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .pricing-cards {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .table-header,
            .table-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .table-cell {
                text-align: left !important;
                border-bottom: 1px solid #eee;
            }
            
            .corporate-title {
                font-size: 2.2rem;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeIn 0.8s ease forwards;
        }

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

        .pricing-card:nth-child(1) { animation-delay: 0.1s; }
        .pricing-card:nth-child(2) { animation-delay: 0.2s; }
        .pricing-card:nth-child(3) { animation-delay: 0.3s; }