 /* Page-specific styles */
        .page-hero {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 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;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-left: 4px solid #3498db;
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            text-align: center;
        }
        
        .highlight-box h3 {
            color: #2c3e50;
            margin-bottom: 0.5rem;
            font-size: 1.8rem;
        }
        
        .highlight-box .subtitle {
            color: #3498db;
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        
        /* Hosting Plans */
        .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-plans {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .hosting-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid #e0e0e0;
        }
        
        .hosting-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: #3498db;
        }
        
        .hosting-card.popular {
            border-color: #2ecc71;
            transform: scale(1.05);
            z-index: 1;
        }
        
        .hosting-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .card-badge {
            position: absolute;
            top: 15px;
            right: -30px;
            background: #2ecc71;
            color: white;
            padding: 5px 30px;
            transform: rotate(45deg);
            font-weight: 600;
            font-size: 0.8rem;
        }
        
        .card-header {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            padding: 2rem;
            text-align: center;
        }
        
        .card-header.basic {
            background: linear-gradient(135deg, #3498db, #2980b9);
        }
        
        .card-header.premium {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
        }
        
        .card-header h3 {
            font-size: 1.8rem;
            margin: 0;
            color: white;
        }
        
        .card-storage {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 1rem 0;
            color: white;
        }
        
        .card-storage span {
            font-size: 1rem;
            font-weight: normal;
        }
        
        .card-price {
            font-size: 2rem;
            font-weight: bold;
            margin: 0.5rem 0;
            color: white;
        }
        
        .card-price span {
            font-size: 1rem;
            font-weight: normal;
        }
        
        .card-body {
            padding: 2rem;
        }
        
        .features-list {
            list-style: none;
            margin: 1.5rem 0;
        }
        
        .features-list li {
            padding: 0.8rem 0.8rem 0.8rem 2.5rem;
            margin-bottom: 0.5rem;
            position: relative;
            border-bottom: 1px solid #eee;
            color: #333;
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .features-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #2ecc71;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .features-list li.lang-hu,
        .features-list li.lang-en,
        .spec-item .lang-hu,
        .spec-item .lang-en,
        .benefits-list li .lang-hu,
        .benefits-list li .lang-en,
        .card-header .lang-hu,
        .card-header .lang-en,
        .card-storage .lang-hu,
        .card-storage .lang-en,
        .card-price .lang-hu,
        .card-price .lang-en {
            color: inherit !important;
        }
        
        .btn-order {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            margin-top: 1.5rem;
            border: none;
            cursor: pointer;
        }
        
        .btn-order:hover {
            background: linear-gradient(135deg, #c0392b, #a93226);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }
        
        /* Technical Specifications */
        .tech-specs {
            background: #f8f9fa;
            padding: 4rem 0;
            margin: 4rem 0;
        }
        
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .spec-item {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s ease;
            border-top: 4px solid #3498db;
        }
        
        .spec-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .spec-icon {
            font-size: 2.5rem;
            color: #3498db;
            margin-bottom: 1rem;
        }
        
        .spec-item h4 {
            color: #2c3e50;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        
        .spec-item p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        /* Benefits Section */
        .benefits-section {
            max-width: 900px;
            margin: 4rem auto;
        }
        
        .benefits-list {
            list-style: none;
            margin: 2rem 0;
        }
        
        .benefits-list li {
            padding: 1rem 1rem 1rem 3rem;
            margin-bottom: 1rem;
            background: white;
            border-radius: 8px;
            position: relative;
            border-left: 4px solid #3498db;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            color: #333;
        }
        
        .benefits-list li:before {
            content: "✓";
            position: absolute;
            left: 1rem;
            color: #3498db;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 4rem 0;
            text-align: center;
            border-radius: 15px;
            margin: 4rem 0;
        }
        
        .cta-section h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: white;
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
            opacity: 0.9;
            color: white;
        }

/* 1. Minden gomb szövegének színe */
.btn-contact,
.btn-order,
.btn {
    color: inherit !important;
}

/* 2. Contact gomb specifikus */
.btn-contact {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: #2c3e50 !important;
    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);
}

/* 3. Order gomb specifikus */
.btn-order {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    border: none;
    cursor: pointer;
}

.btn-order:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

   
        
        /* Különleges esetek, ahol ne legyen elrejtve */
        .card-header .lang-hu,
        .card-header .lang-en,
        .features-list li,
        .spec-item h4,
        .spec-item p,
        .benefits-list li {
            color: inherit;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2.2rem;
            }
            
            .hosting-plans {
                grid-template-columns: 1fr;
            }
            
            .hosting-card.popular {
                transform: none;
            }
            
            .hosting-card.popular:hover {
                transform: translateY(-10px);
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .card-badge {
                right: -25px;
                padding: 5px 25px;
                font-size: 0.7rem;
            }
        }