* {
            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: 1400px;
            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: 50px;
            border-bottom: 3px solid #667eea;
            padding-bottom: 30px;
        }
        
        .header h1 {
            font-size: 42px;
            color: #667eea;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .header p {
            font-size: 18px;
            color: #666;
        }
        
        .section-title {
            font-size: 32px;
            color: #333;
            margin: 40px 0 30px 0;
            text-align: center;
            font-weight: 600;
        }
        
        .comparison-table {
            width: 100%;
            margin: 30px 0;
            border-collapse: collapse;
            background: white;
            border-radius: 15px;
            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;
            font-size: 16px;
            font-weight: 600;
            text-align: left;
            border-right: 1px solid rgba(255,255,255,0.2);
        }
        
        .comparison-table th:last-child {
            border-right: none;
        }
        
        .comparison-table tbody tr {
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s;
        }
        
        .comparison-table tbody tr:hover {
            background: #f8f9ff;
        }
        
        .comparison-table td {
            padding: 18px 15px;
            font-size: 14px;
            border-right: 1px solid #f0f0f0;
        }
        
        .comparison-table td:last-child {
            border-right: none;
        }
        
        .price {
            font-size: 24px;
            font-weight: 700;
            color: #667eea;
        }
        
        .price-small {
            font-size: 14px;
            color: #999;
            font-weight: 400;
        }
        
        .popular-badge {
            background: #ff6b6b;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            display: inline-block;
            margin-left: 10px;
        }
        
        .checkmark {
            color: #51cf66;
            font-size: 18px;
            font-weight: bold;
        }
        
        .cross {
            color: #ff6b6b;
            font-size: 18px;
        }
        
        .package-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .package-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border: 2px solid #f0f0f0;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
            border-color: #667eea;
        }
        
        .package-card.popular {
            border-color: #667eea;
            border-width: 3px;
        }
        
        .package-card.popular::before {
            content: "MOST POPULAR";
            position: absolute;
            top: 20px;
            right: -35px;
            background: #ff6b6b;
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 12px;
            font-weight: 700;
        }
        
        .package-name {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }
        
        .package-price {
            font-size: 36px;
            font-weight: 700;
            color: #667eea;
            margin: 20px 0;
        }
        
        .package-price span {
            font-size: 16px;
            color: #999;
            font-weight: 400;
        }
        
        .bifurcation {
            background: #f8f9ff;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }
        
        .bifurcation-title {
            font-size: 16px;
            font-weight: 600;
            color: #667eea;
            margin-bottom: 15px;
        }
        
        .bifurcation-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            font-size: 14px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .bifurcation-item:last-child {
            border-bottom: none;
        }
        
        .bifurcation-label {
            color: #666;
        }
        
        .bifurcation-value {
            font-weight: 600;
            color: #333;
        }
        
        .features-list {
            list-style: none;
            margin: 20px 0;
        }
        
        .features-list li {
            padding: 10px 0;
            font-size: 14px;
            color: #666;
            display: flex;
            align-items: start;
        }
        
        .features-list li::before {
            content: "✓";
            color: #51cf66;
            font-weight: bold;
            margin-right: 10px;
            font-size: 16px;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .pricing-item {
            background: white;
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s;
        }
        
        .pricing-item:hover {
            border-color: #667eea;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
        }
        
        .pricing-item-name {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }
        
        .pricing-item-price {
            font-size: 24px;
            font-weight: 700;
            color: #667eea;
            margin: 10px 0;
        }
        
        .pricing-item-desc {
            font-size: 13px;
            color: #999;
        }
        
        .footer-note {
            background: #fff9e6;
            border-left: 4px solid #ffc107;
            padding: 20px;
            margin: 40px 0;
            border-radius: 5px;
        }
        
        .footer-note h3 {
            color: #f57c00;
            margin-bottom: 10px;
        }
        
        .footer-note ul {
            margin-left: 20px;
            color: #666;
        }
        
        .footer-note ul li {
            margin: 5px 0;
        }
        
        @media print {
            body {
                background: white;
                padding: 0;
            }
            
            .print-btn {
                display: none;
            }
            
            .container {
                box-shadow: none;
                padding: 20px;
            }
            
            .package-card {
                page-break-inside: avoid;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 20px;
            }
            
            .header h1 {
                font-size: 28px;
            }
            
            .comparison-table {
                font-size: 12px;
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 10px 8px;
            }
        }