/* Page-specific styles */
        .page-hero {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 5rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
            opacity: 0.1;
        }
        
        .page-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
        
        .page-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .page-content {
            padding: 4rem 0;
        }
        
        .intro-section {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 4rem;
        }
        
        .intro-section h2 {
            color: #2c3e50;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .intro-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
        }
        
        /* Comparison Section */
        .comparison-section {
            margin: 4rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: #2c3e50;
            font-size: 2.5rem;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #3498db, #2ecc71);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        /* Hosting Types */
        .hosting-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        @media (max-width: 768px) {
            .hosting-types {
                grid-template-columns: 1fr;
            }
        }
        
        .hosting-type-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .hosting-type-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .type-header {
            padding: 2rem;
            text-align: center;
            color: white;
        }
        
        .type-header.vps {
            background: linear-gradient(135deg, #3498db, #2980b9);
        }
        
        .type-header.dedicated {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
        }
        
        .type-header h3 {
            font-size: 2rem;
            margin: 0;
        }
        
        .type-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .type-body {
            padding: 2rem;
        }
        
        .type-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 2rem;
        }
        
        .advantages-list {
            list-style: none;
            margin: 1.5rem 0;
        }
        
        .advantages-list li {
            padding: 0.8rem 0.8rem 0.8rem 2.5rem;
            margin-bottom: 0.8rem;
            position: relative;
            border-radius: 8px;
            background: #f8f9fa;
        }
        
        .advantages-list li.vps-advantage {
            border-left: 4px solid #3498db;
        }
        
        .advantages-list li.dedicated-advantage {
            border-left: 4px solid #e74c3c;
        }
        
        .advantages-list li:before {
            content: "✓";
            position: absolute;
            left: 0.8rem;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .advantages-list li.vps-advantage:before {
            color: #3498db;
        }
        
        .advantages-list li.dedicated-advantage:before {
            color: #e74c3c;
        }
        
        /* Comparison Table */
        .comparison-table-section {
            background: #f8f9fa;
            padding: 4rem 0;
            margin: 4rem 0;
        }
        
        .comparison-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .table-header {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 2rem;
            text-align: center;
        }
        
        .table-header h3 {
            font-size: 1.8rem;
            margin: 0;
        }
        
        .table-content {
            padding: 0;
        }
        
        .table-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            border-bottom: 1px solid #eee;
        }
        
        .table-row:last-child {
            border-bottom: none;
        }
        
        .table-cell {
            padding: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .table-row.header {
            background: #f8f9fa;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .table-cell.feature {
            justify-content: flex-start;
            font-weight: 500;
            color: #2c3e50;
        }
        
        .check-icon {
            color: #2ecc71;
            font-size: 1.2rem;
        }
        
        .times-icon {
            color: #e74c3c;
            font-size: 1.2rem;
        }
        
        /* Decision Guide */
        .decision-guide {
            max-width: 900px;
            margin: 4rem auto;
            background: white;
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        
        .guide-item {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #eee;
        }
        
        .guide-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .guide-item h4 {
            color: #2c3e50;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .guide-item h4 i {
            color: #3498db;
        }
        
        .guide-item p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            padding: 4rem 0;
            text-align: center;
            border-radius: 15px;
            margin: 4rem 0;
        }
        
        .cta-section h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .btn-contact {
            display: inline-block;
            padding: 15px 30px;
            background: white;
            color: #3498db;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-contact:hover {
            background: #f8f9fa;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .table-row {
                grid-template-columns: 1fr;
                border-bottom: 2px solid #eee;
            }
            
            .table-row.header {
                display: none;
            }
            
            .table-cell {
                padding: 1rem;
                border-bottom: 1px solid #eee;
            }
            
            .table-cell.feature {
                background: #f8f9fa;
                font-weight: 600;
            }
            
            .decision-guide {
                padding: 2rem;
            }
        }