* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 40px 20px;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        
        .header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .startup-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            color: white;
            padding: 8px 25px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }
        
        .header h1 {
            font-size: 48px;
            color: #667eea;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .header h2 {
            font-size: 32px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .header p {
            font-size: 18px;
            color: #666;
            line-height: 1.6;
        }
        
        .price-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin: 40px 0;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }
        
        .price-hero .original-price {
            font-size: 24px;
            text-decoration: line-through;
            opacity: 0.7;
            margin-bottom: 10px;
        }
        
        .price-hero .discounted-price {
            font-size: 72px;
            font-weight: 700;
            margin: 20px 0;
        }
        
        .price-hero .price-note {
            font-size: 18px;
            opacity: 0.9;
        }
        
        .savings-badge {
            display: inline-block;
            background: #51cf66;
            color: white;
            padding: 10px 30px;
            border-radius: 25px;
            font-size: 18px;
            font-weight: 600;
            margin-top: 20px;
        }
        
        .bifurcation-section {
            background: #f8f9ff;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
            border: 2px solid #667eea;
        }
        
        .bifurcation-title {
            font-size: 28px;
            color: #667eea;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 600;
        }
        
        .bifurcation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .bifurcation-item {
            background: white;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #667eea;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .bifurcation-item-name {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }
        
        .bifurcation-item-price {
            font-size: 24px;
            font-weight: 700;
            color: #667eea;
        }
        
        .section {
            margin: 50px 0;
        }
        
        .section-header {
            font-size: 32px;
            color: #333;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #667eea;
            font-weight: 600;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .service-card {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: scaleY(0);
            transition: transform 0.3s;
        }
        
        .service-card:hover::before {
            transform: scaleY(1);
        }
        
        .service-card:hover {
            border-color: #667eea;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
            transform: translateY(-5px);
        }
        
        .service-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }
        
        .service-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }
        
        .service-description {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .service-details {
            background: #f8f9ff;
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
        }
        
        .service-details ul {
            list-style: none;
            margin-top: 10px;
        }
        
        .service-details li {
            padding: 6px 0;
            font-size: 13px;
            color: #555;
            display: flex;
            align-items: center;
        }
        
        .service-details li::before {
            content: "✓";
            color: #51cf66;
            font-weight: bold;
            margin-right: 8px;
            font-size: 16px;
        }
        
        .timeline {
            background: #f8f9ff;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
        }
        
        .timeline-title {
            font-size: 28px;
            color: #667eea;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 600;
        }
        
        .timeline-item {
            display: flex;
            margin-bottom: 30px;
            position: relative;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 40px;
            width: 2px;
            height: calc(100% + 10px);
            background: #667eea;
        }
        
        .timeline-item:last-child::before {
            display: none;
        }
        
        .timeline-day {
            min-width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-right: 20px;
            flex-shrink: 0;
            z-index: 1;
        }
        
        .timeline-content {
            background: white;
            padding: 20px;
            border-radius: 10px;
            flex-grow: 1;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .timeline-content h4 {
            color: #667eea;
            margin-bottom: 8px;
            font-size: 18px;
        }
        
        .timeline-content p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }
        
        .features-comparison {
            margin: 40px 0;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .comparison-table thead {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        .comparison-table th {
            padding: 20px 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .comparison-table td {
            padding: 15px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .comparison-table tbody tr:hover {
            background: #f8f9ff;
        }
        
        .checkmark {
            color: #51cf66;
            font-size: 20px;
            font-weight: bold;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #fff9e6 0%, #fff4d4 100%);
            border-left: 4px solid #ffc107;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        
        .highlight-box h3 {
            color: #f57c00;
            margin-bottom: 15px;
            font-size: 22px;
        }
        
        .highlight-box ul {
            list-style: none;
            margin-left: 0;
        }
        
        .highlight-box li {
            padding: 8px 0;
            color: #666;
            display: flex;
            align-items: center;
        }
        
        .highlight-box li::before {
            content: "⭐";
            margin-right: 10px;
            font-size: 16px;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 50px;
            border-radius: 15px;
            text-align: center;
            margin: 50px 0;
        }
        
        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-block;
            background: white;
            color: #667eea;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .contact-item {
            background: rgba(255,255,255,0.2);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }
        
        .contact-label {
            font-size: 14px;
            opacity: 0.8;
            margin-bottom: 8px;
        }
        
        .contact-value {
            font-size: 16px;
            font-weight: 600;
        }
        
        @media print {
            body {
                background: white;
                padding: 0;
            }
            
            .print-btn {
                display: none;
            }
            
            .container {
                box-shadow: none;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 25px;
            }
            
            .header h1 {
                font-size: 32px;
            }
            
            .price-hero .discounted-price {
                font-size: 48px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }