
        /* Základné štýly */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: #ffffff;
            color: #333333;
            overflow-x: hidden;
        }
        
        /* Hlavná sekcia s rozdelením na dve časti */
        .hero-section {
            position: relative;
            height: 100vh;
            display: flex;
            overflow: hidden;
        }
        
        /* Ľavá časť s obsahom */
        .content-side {
            width: 50%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 80px;
            position: relative;
            z-index: 5;
            background: rgba(255, 255, 255, 0.95);
        }
        
        /* Pravá časť s videom */
        .video-side {
            width: 50%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
                                                                       
        .video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 100%);
            z-index: 2;
        }
        
        /* Navigácia */
        .navbar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 25px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            padding: 15px 50px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #333333;
            text-decoration: none;
        }
        
        .logo span {
            color: #6c63ff;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: #333333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: #6c63ff;
        }
        
        /* Mobilné menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1000;
        }
        
        .mobile-menu-btn span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: #333333;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 999;
            transition: right 0.4s ease;
            padding: 80px 30px 30px;
            display: flex;
            flex-direction: column;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu-links {
            list-style: none;
        }
        
        .mobile-menu-links li {
            margin-bottom: 20px;
        }
        
        .mobile-menu-links a {
            color: #333333;
            text-decoration: none;
            font-size: 20px;
            font-weight: 500;
            display: block;
            padding: 10px 0;
            transition: color 0.3s ease;
        }
        
        .mobile-menu-links a:hover {
            color: #6c63ff;
        }
        
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Obsah na ľavej strane */
        .tagline {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #6c63ff;
            margin-bottom: 10px;
        }
        
        .main-heading {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #333333;
        }
        
        .description {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #666666;
            max-width: 90%;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: #6c63ff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        
        .cta-button:hover {
            background: #5752d4;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
        }
        
        /* Sekcia so službami */
        .services-section {
            padding: 100px 50px;
            background: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 60px;
            position: relative;
            color: #333333;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #6c63ff;
        }
        
        .services-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 60px;
        }
        
        .service-item {
            background: #ffffff;
            padding: 15px 25px;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid #e9ecef;
            color: #333333;
        }
        
        .service-item:hover, .service-item.active {
            background: #6c63ff;
            color: white;
            transform: translateY(-3px);
            border-color: #6c63ff;
        }
        
        .service-detail {
            max-width: 1000px;
            margin: 0 auto;
            display: none;
        }
        
        .service-detail.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .service-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .service-image {
            flex: 0 0 40%;
            height: 300px;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
        }
        
        .service-text {
            flex: 1;
        }
        
        .service-subtitle {
            font-size: 24px;
            margin-bottom: 20px;
            color: #6c63ff;
        }
        
        .service-description {
            font-size: 16px;
            line-height: 1.6;
            color: #666666;
            margin-bottom: 25px;
        }
        
        .service-button {
            display: inline-block;
            padding: 10px 20px;
            background: transparent;
            color: #6c63ff;
            text-decoration: none;
            border: 2px solid #6c63ff;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .service-button:hover {
            background: #6c63ff;
            color: white;
        }
        
        /* Mobilný layout pre služby */
        .mobile-service-item {
            display: none;
            background: #ffffff;
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .mobile-service-header {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #ffffff;
            border-bottom: 1px solid #e9ecef;
        }
        
        .mobile-service-title {
            font-size: 18px;
            font-weight: 600;
            color: #333333;
        }
        
        .mobile-service-icon {
            transition: transform 0.3s ease;
            color: #6c63ff;
        }
        
        .mobile-service-icon.active {
            transform: rotate(180deg);
        }
        
        .mobile-service-content {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.3s ease;
        }
        
        .mobile-service-content.active {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        .mobile-service-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            border-radius: 5px;
            margin-bottom: 15px;
        }
        
        .mobile-service-description {
            font-size: 16px;
            line-height: 1.6;
            color: #666666;
            margin-bottom: 15px;
        }
        
        /* Sekcia s portfóliom */
        .portfolio-section {
            padding: 100px 50px;
            background: #ffffff;
        }
        
        .portfolio-slider {
            position: relative;
            overflow: hidden;
            margin: 0 auto;
            max-width: 1200px;
        }
        
        .slider-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .portfolio-item {
            min-width: 100%;
            padding: 0 15px;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
            gap: 30px;
        }
        
        .portfolio-card {
            background: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #e9ecef;
        }
        
        .portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .portfolio-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
    
        
        
        
        
        .portfolio-image1 {
    width: 580px;
    height: 300px;
    overflow: hidden;
margin: 0 auto; /* centrovanie */
}

.portfolio-image1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; /* animácia pri hover */
}

.portfolio-image1 img:hover {
    transform: scale(1.05); /* mierne priblíženie pri najazdení myšou */
}
        
        .portfolio-content {
            padding: 20px;
        }
        
        .portfolio-title {
            font-size: 20px;
            margin-bottom: 10px;
            color: #333333;
        }
        
        .portfolio-description {
            color: #666666;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #e9ecef;
            margin: 0 8px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .slider-dot.active {
            background: #6c63ff;
        }
        
        .view-all {
            display: block;
            text-align: center;
            margin-top: 50px;
            color: #6c63ff;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: color 0.3s ease;
        }
        
        .view-all:hover {
            color: #8a84ff;
        }
        
        /* Sekcia Cenník */
        .pricing-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background: #f8f9fa;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 18px;
            margin-bottom: 60px;
            color: #666666;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .pricing-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }
        
        .pricing-card {
            background: #ffffff;
            border-radius: 10px;
            padding: 40px 30px;
            width: 100%;
            max-width: 350px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e9ecef;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card.popular {
            border: 2px solid #6c63ff;
            transform: scale(1.05);
        }
        
        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #6c63ff;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }
        
        .plan-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #333333;
        }
        
        .plan-price {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 5px;
            color: #6c63ff;
        }
        
        .price-period {
            font-size: 16px;
            color: #666666;
            margin-bottom: 30px;
        }
        
        .product-limit {
            background: rgba(108, 99, 255, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 20px;
            font-weight: 600;
            color: #6c63ff;
        }
        
        .plan-features {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .plan-features li {
            padding: 10px 0;
            border-bottom: 1px solid #e9ecef;
            position: relative;
            padding-left: 25px;
            color: #666666;
        }
        
        .plan-features li:before {
            content: "✓";
            color: #6c63ff;
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .plan-features li:last-child {
            border-bottom: none;
        }
        
        .view-more {
            text-align: center;
            margin-top: 30px;
        }
        
        .view-more-btn {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: #6c63ff;
            text-decoration: none;
            border: 2px solid #6c63ff;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .view-more-btn:hover {
            background: #6c63ff;
            color: white;
        }
        
        .guarantee {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            background: rgba(108, 99, 255, 0.05);
            border-radius: 10px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid rgba(108, 99, 255, 0.1);
        }
        
        .guarantee-title {
            font-size: 20px;
            margin-bottom: 10px;
            color: #6c63ff;
        }
        
        .guarantee p {
            color: #666666;
        }
        
        
        
        
        /* Sekcia Šablóny */
        .templates-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
        }
        
        /* Desktop zobrazenie */
        .templates-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .template-card {
            background: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e9ecef;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .template-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .template-image-container {
            width: 100%;
            height: 320px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
        }
        
        .template-image {
            width: 478px;
            height: 392px;
            object-fit: cover;
            display: block;
        }
        
        .template-content {
            padding: 25px;
        }
        
        .template-name {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #333333;
        }
        
        .template-description {
            color: #666666;
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        .template-features {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .template-features li {
            padding: 5px 0;
            position: relative;
            padding-left: 20px;
            font-size: 14px;
            color: #666666;
        }
        
        .template-features li:before {
            content: "•";
            color: #6c63ff;
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .template-button {
            display: inline-block;
            padding: 10px 20px;
            background: #6c63ff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 14px;
            text-align: center;
            width: 100%;
        }
        
        .template-button:hover {
            background: #5752d4;
            transform: translateY(-2px);
        }
        
        /* Mobilný slider */
        .templates-slider {
            display: none;
            position: relative;
            overflow: hidden;
            margin-bottom: 50px;
        }
        
        .slider-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slider-item {
            min-width: 100%;
            padding: 0 10px;
        }
        
        .customization-info {
            background: rgba(108, 99, 255, 0.05);
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            margin-top: 60px;
            border: 1px solid rgba(108, 99, 255, 0.1);
        }
        
        .customization-title {
            font-size: 28px;
            margin-bottom: 20px;
            color: #6c63ff;
        }
        
        .customization-text {
            color: #666666;
            margin-bottom: 30px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            font-size: 18px;
        }
        
        .customization-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .customization-feature {
            background: rgba(255, 255, 255, 0.7);
            padding: 20px;
            border-radius: 8px;
            text-align: left;
            transition: transform 0.3s ease;
            border: 1px solid #e9ecef;
        }
        
        .customization-feature:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.9);
        }
        
        .feature-icon {
            font-size: 32px;
            margin-bottom: 15px;
            color: #6c63ff;
        }
        
        .feature-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333333;
        }
        
        .feature-text {
            font-size: 14px;
            color: #666666;
            line-height: 1.5;
        }
        
        .view-all-btn {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: #6c63ff;
            text-decoration: none;
            border: 2px solid #6c63ff;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .view-all-btn:hover {
            background: #6c63ff;
            color: white;
        }
        
        /* Responzívne štýly */
        @media (max-width: 992px) {
            .hero-section {
                flex-direction: column;
                height: auto;
            }
            
            .content-side, .video-side {
                width: 100%;
                height: 50vh;
            }
            
            .content-side {
                padding: 80px 30px 50px;
                order: 2;
            }
            
            .video-side {
                order: 1;
            }
            
            .main-heading {
                font-size: 36px;
            }
            
            .navbar {
                padding: 20px 30px;
            }
            
            .navbar.scrolled {
                padding: 15px 30px;
            }
            
            .service-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .service-image {
                width: 100%;
                height: 250px;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .main-heading {
                font-size: 32px;
            }
            
            .services-section, .portfolio-section, .pricing-section, .templates-section {
                padding: 80px 30px;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .content-side {
                padding: 100px 20px 40px;
            }
            
            .description {
                max-width: 100%;
            }
            
            .services-list {
                display: none;
            }
            
            .service-detail {
                display: none !important;
            }
            
            .mobile-service-item {
                display: block;
            }
            
            .templates-container {
                display: none;
            }
            
            .templates-slider {
                display: block;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .customization-features {
                grid-template-columns: 1fr;
            }
            
            .customization-feature {
                text-align: center;
            }
            
            .template-image-container {
                height: 280px;
            }
            
            .template-image {
                width: 100%;
                height: 100%;
                max-width: 478px;
                max-height: 392px;
            }
            
            .pricing-container {
                flex-direction: column;
                align-items: center;
            }
            
            .pricing-card {
                max-width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .template-image-container {
                height: 240px;
            }
        }
        
        
        
    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #ffffff;
            color: #333333;
            line-height: 1.6;
        }
        
        .templates-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 15px;
            color: #333333;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 18px;
            margin-bottom: 60px;
            color: #666666;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .customization-info {
            background: rgba(108, 99, 255, 0.05);
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            margin-top: 60px;
            border: 1px solid rgba(108, 99, 255, 0.1);
        }
        
        .customization-title {
            font-size: 28px;
            margin-bottom: 20px;
            color: #6c63ff;
        }
        
        .customization-text {
            color: #666666;
            margin-bottom: 30px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            font-size: 18px;
        }
        
        /* Štýly pre grafické balíky */
        .graphic-packages {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .graphic-package {
            background: #ffffff;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e9ecef;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .graphic-package:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .package-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #333333;
        }
        
        .package-type {
            font-size: 16px;
            color: #6c63ff;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .package-price {
            font-size: 32px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 25px;
        }
        
        .package-features {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }
        
        .package-features li {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            position: relative;
            padding-left: 25px;
            color: #666666;
        }
        
        .package-features li:before {
            content: "✓";
            color: #6c63ff;
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .package-features li:last-child {
            border-bottom: none;
        }
        
        .package-button {
            display: inline-block;
            padding: 12px 30px;
            background: #6c63ff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            text-align: center;
        }
        
        .package-button:hover {
            background: #5752d4;
            transform: translateY(-2px);
        }
        
        .package-popular {
            border: 2px solid #6c63ff;
            transform: scale(1.05);
        }
        
        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #6c63ff;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }
        
        .view-all-btn {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: #6c63ff;
            text-decoration: none;
            border: 2px solid #6c63ff;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 40px;
        }
        
        .view-all-btn:hover {
            background: #6c63ff;
            color: white;
        }
        
        /* Responzívne štýly */
        @media (max-width: 992px) {
            .graphic-packages {
                grid-template-columns: 1fr;
            }
            
            .package-popular {
                transform: scale(1);
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 28px;
            }
            
            .customization-title {
                font-size: 24px;
            }
            
            .graphic-package {
                padding: 20px;
            }
        }
    
 
        /* Základné štýly */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #ffffff;
            color: #333333;
            line-height: 1.6;
        }
        
        .templates-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 15px;
            color: #333333;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 18px;
            margin-bottom: 60px;
            color: #666666;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .customization-info {
            background: rgba(108, 99, 255, 0.05);
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            margin-top: 60px;
            border: 1px solid rgba(108, 99, 255, 0.1);
        }
        
        .customization-title {
            font-size: 28px;
            margin-bottom: 20px;
            color: #6c63ff;
        }
        
        .customization-text {
            color: #666666;
            margin-bottom: 30px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            font-size: 18px;
        }
        
        /* Štýly pre grafické balíky */
        .graphic-packages {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .graphic-package {
            background: #ffffff;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e9ecef;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .graphic-package:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .package-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #333333;
        }
        
        .package-type {
            font-size: 16px;
            color: #6c63ff;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .package-price {
            font-size: 32px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 25px;
        }
        
        .package-free {
            color: #43e97b;
        }
        
        .package-features {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }
        
        .package-features li {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            position: relative;
            padding-left: 25px;
            color: #666666;
        }
        
        .package-features li:before {
            content: "✓";
            color: #6c63ff;
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .package-features li:last-child {
            border-bottom: none;
        }
        
        .package-button {
            display: inline-block;
            padding: 12px 30px;
            background: #6c63ff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            text-align: center;
        }
        
        .package-free-button {
            background: #43e97b;
        }
        
        .package-free-button:hover {
            background: #38d46c;
        }
        
        .package-button:hover {
            background: #5752d4;
            transform: translateY(-2px);
        }
        
        .package-popular {
            border: 2px solid #6c63ff;
            transform: scale(1.05);
        }
        
        .package-free-highlight {
            border: 2px solid #43e97b;
        }
        
        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #6c63ff;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }
        
        .free-badge {
            background: #43e97b;
        }
        
        .view-all-btn {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: #6c63ff;
            text-decoration: none;
            border: 2px solid #6c63ff;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 40px;
        }
        
        .view-all-btn:hover {
            background: #6c63ff;
            color: white;
        }
        
        /* Responzívne štýly */
        @media (max-width: 992px) {
            .graphic-packages {
                grid-template-columns: 1fr;
            }
            
            .package-popular, .package-free-highlight {
                transform: scale(1);
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 28px;
            }
            
            .customization-title {
                font-size: 24px;
            }
            
            .graphic-package {
                padding: 20px;
            }
        }
        
        
        
        /* Základné štýly */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #ffffff;
            color: #333333;
            line-height: 1.6;
        }
        
        .migration-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 15px;
            color: #333333;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #6c63ff;
            margin: 15px auto 30px;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 18px;
            margin-bottom: 60px;
            color: #666666;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Hlavný obsah sekcie */
        .migration-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 50px;
        }
        
        .migration-text {
            padding-right: 20px;
        }
        
        .migration-text ul {
            text-align: center; /* Centrovanie zoznamu */
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .migration-text li {
            padding: 8px 0;
            position: relative;
            color: #666666;
            font-size: 16px;
        }
        
        .migration-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .migration-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Štýly pre proces migrácie */
        .migration-process {
            background: white;
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .process-title {
            font-size: 24px;
            color: #6c63ff;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .process-step {
            text-align: center;
            padding: 20px;
        }
        
        .step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #6c63ff;
            color: white;
            border-radius: 50%;
            line-height: 40px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .step-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333333;
        }
        
        .step-description {
            font-size: 14px;
            color: #666666;
        }
        
        /* Štýly pre výhody */
        .migration-benefits {
            margin-bottom: 50px;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .benefit-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
        }
        
        .benefit-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: #6c63ff;
        }
        
        .benefit-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333333;
        }
        
        .benefit-description {
            font-size: 15px;
            color: #666666;
        }
        
        /* Štýly pre podporované platformy */
        .supported-platforms {
            background: white;
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .platforms-title {
            font-size: 24px;
            color: #6c63ff;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .platform-item {
            text-align: center;
            padding: 20px;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .platform-item:hover {
            border-color: #6c63ff;
            transform: translateY(-3px);
        }
        
        .platform-icon {
            font-size: 32px;
            margin-bottom: 15px;
            color: #6c63ff;
        }
        
        .platform-name {
            font-weight: 600;
            color: #333333;
        }
        
        /* Cenník migrácie */
        .migration-pricing {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .pricing-title {
            font-size: 24px;
            color: #6c63ff;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .pricing-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-option {
            text-align: center;
            padding: 30px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .pricing-option:hover {
            border-color: #6c63ff;
        }
        
        .option-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333333;
        }
        
        .option-price {
            font-size: 32px;
            font-weight: 700;
            color: #6c63ff;
            margin-bottom: 20px;
        }
        
        .option-features {
            list-style: none;
            text-align: left;
            margin-bottom: 25px;
        }
        
        .option-features li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
            color: #666666;
        }
        
        .option-features li:before {
            content: "✓";
            color: #6c63ff;
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .option-button {
            display: inline-block;
            padding: 12px 30px;
            background: #6c63ff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .option-button:hover {
            background: #5752d4;
        }
        
        /* Responzívne štýly */
        @media (max-width: 992px) {
            .migration-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .migration-text {
                padding-right: 0;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 28px;
            }
            
            .benefits-grid, .platforms-grid, .pricing-options {
                grid-template-columns: 1fr;
            }
            
            .migration-process, .supported-platforms, .migration-pricing {
                padding: 30px 20px;
            }
        }
   <style>
        /* Základné štýly */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #ffffff;
            color: #333333;
            line-height: 1.6;
        }
        
        /* Footer štýly */
     .footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
}
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-columns {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333333;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #666666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #6c63ff;
        }
        
        .newsletter-column {
            grid-column: span 2;
        }
        
        .newsletter-text {
            font-size: 14px;
            color: #666666;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .newsletter-form {
            display: flex;
            margin-bottom: 15px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px 0 0 5px;
            font-size: 14px;
            outline: none;
        }
        
        .newsletter-input:focus {
            border-color: #6c63ff;
        }
        
        .newsletter-button {
            background: #6c63ff;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        
        .newsletter-button:hover {
            background: #5752d4;
        }
        
        .newsletter-disclaimer {
            font-size: 12px;
            color: #999;
            line-height: 1.4;
        }
        
        .footer-bottom {
            border-top: 1px solid #e9ecef;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: #333333;
        }
        
        .logo-text span {
            color: #6c63ff;
        }
        
        .copyright {
            font-size: 14px;
            color: #666666;
            margin-bottom: 10px;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }
        
        .footer-bottom-links a {
            color: #666666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-bottom-links a:hover {
            color: #6c63ff;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: #6c63ff;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        
        .social-link:hover {
            background: #5752d4;
            transform: translateY(-2px);
        }
        
        /* Responzívne štýly */
        @media (max-width: 992px) {
            .footer-columns {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }
            
            .newsletter-column {
                grid-column: span 3;
            }
        }
        
        @media (max-width: 768px) {
            .footer-columns {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .newsletter-column {
                grid-column: span 2;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-bottom-links {
                margin: 20px 0;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .footer-columns {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .newsletter-column {
                grid-column: span 1;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-input {
                border-radius: 5px;
                margin-bottom: 10px;
            }
            
            .newsletter-button {
                border-radius: 5px;
                padding: 12px;
            }
        }
    
    
    
   
    
    
    
    
    
    
    
  