  /* Reset a základné štýly */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2c3e50;
            --secondary: #e74c3c;
            --accent: #3498db;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --text: #333;
            --text-light: #7f8c8d;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: #f9f9f9;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header a navigácia */
        header {
            background: var(--primary);
            color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
           
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }

        .logo span {
            color: var(--secondary);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s;
            padding: 0.5rem 0;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--secondary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero sekcia */
       /* .hero {
            background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 80px;
        } */

        .hero {
            background: linear-gradient(rgba(44, 62, 80, 0.4), rgba(44, 62, 80, 0.5)), url('images/fb160-400-2.png');
            background-size: contain;
            background-position: right;
            background-repeat: no-repeat;
            height: 100vh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            text-align: left;
            color: white;
            padding-top: 100px;
            flex: 1;
            flex-direction: column;
        }

        .hero2 {
            background:  url('images/CB03II-新机-e1654505875267.png');
            background-size: auto;
            background-position: center;
            background-repeat: no-repeat;
            height: 100vh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            text-align: center;
            color: black;
            font-size: large;
            padding-top: 100px;
        }
        
        .hero3 {
            background:  url('images/fb160-400-2.png');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            height: 100vh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            text-align: center;
            color: black;
            font-size: large;
            padding-top: 100px;
            padding-left: 100px;
        }

        .hero4 {
            background:  url('images/dizajn.png');
            background-size: auto;
            background-position: center;
            background-repeat: no-repeat;
            height: 100vh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            text-align: center;
            color: rgb(2, 2, 2);
            font-size: larger;
            font-weight: bolder;
            padding-top:100px;
        }

        .hero-content {
            max-width: 800px;
            margin-top: 5px;
        }

        .hero-buttons {
            margin-top: 215px; /* Tlačidlá sú posunuté veľmi nízko - na úroveň papiera */
            margin-left: 300px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--light);
        }

        /* Tlačidlá */
        .cta-button {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 14px 35px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid var(--secondary);
            font-size: 1.1rem;
            margin: 0.5rem;
        }

        .cta-button:hover {
            background: white;
            color: var(--secondary);
        }

        .cta-button.secondary {
            background: var(--secondary);
            color: white;
            border: 2px solid var(--secondary);
        }

        .cta-button.secondary:hover {
            background: white;
            color: var(--primary);
        }

        /* Sekcie */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }

        .section-title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        /* Výhody */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .benefit-item {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .benefit-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--secondary);
            font-size: 2rem;
        }

        .benefit-item h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        /* Služby */
        .services {
            background: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-image {
            height: 200px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .service-content {
            padding: 1.5rem;
        }

        .service-content h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .service-content ul {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .service-content ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .service-content ul li:last-child {
            border-bottom: none;
        }

        .service-content ul li i {
            color: var(--secondary);
            margin-right: 0.5rem;
        }

        .services-section {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .services-list {
            list-style-type: disc;
            margin: 0 auto;
            padding: 0;
            align-items: center;
            display: flex;
            flex-direction: column;
            width: fit-content;
            text-align: left;
        }

        .services-list li {
            margin-bottom: 10px;
            font-size: 18px;
            color: #333;
            line-height: 1.5;
              width: 100%;
              padding-left: 5px;
        }

        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }
            
            .nav-links {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .dropdown-menu {
                position: static;
                box-shadow: none;
                margin-top: 10px;
            }
        }

        /* Technológie */
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .tech-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .tech-image {
            height: 200px;
            background: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .tech-content {
            padding: 1.5rem;
        }

        .tech-content h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .specs {
            margin-top: 1.5rem;
        }

       /* .spec-item {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
            text-align: center;
        }*/

        .spec-item:last-child {
            border-bottom: none;
        }

        /* Proces */
        .process {
            background: var(--light);
            padding: 80px 0;
            margin-top: 60px;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 3rem;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent);
            z-index: 1;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
            border: 5px solid var(--light);
        }

        .step h3 {
            margin-bottom: 1rem;
            color: var(--primary);
        }

        /* Galéria */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .gallery-item {
            background: var(--primary);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            transition: transform 0.3s;
            aspect-ratio: 4/3; /* Zachová pomer strán 4:3 */
        }

        .gallery-item:hover {
            transform: scale(1.03);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 1rem;
            opacity: 0;
            transition: opacity 0.3s;
            /*transform: translateY(100%);
            transition: transform 0.3s;*/
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
            /*transform: translateY(0);*/
        }

        /* Kontakt */
        .contact {
            background: var(--primary);
            color: white;
        }

        .contact .section-title h2 {
            color: white;
        }

        .contact .section-title p {
            color: var(--light);
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            color: var(--text);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 0rem;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.0rem;
            position: relative;
            padding-bottom: 0.3rem;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 2px;
            background: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: var(--secondary);
        }

        .copyright {
            text-align: center;
            padding-top: 1.0rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 0.9rem;
        }

        /* Responzívne štýly */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .process-steps {
                flex-direction: column;
                gap: 2rem;
            }
            
            .process-steps::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
                flex-direction: column;
                justify-content: flex-end !important;
                right: -100px;
                justify-items: flex-end;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--primary);
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                text-align: center;
            }
            
            nav ul li a {
                display: block;
                padding: 1rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            section {
                padding: 70px 0;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-button {
                display: block;
                margin: 0.5rem auto;
                width: 80%;
                max-width: 250px;
                text-align: center;
            }
        }

        /* Dropdown menu */
     /*      .dropdown {
                position: relative;
            }

            .dropdown-menu {
                position: absolute;
                top: 100%;
                left: 0;
                background: white;
                min-width: 250px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                border-radius: 5px;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: all 0.3s ease;
                z-index: 1000;
            }

            .dropdown-menu li {
                display: block;
                width: 100%;
            }

            .dropdown-menu a {
                color: #333;
                padding: 12px 20px;
                border-bottom: 1px solid #f0f0f0;
                display: block;
                white-space: nowrap;
                text-decoration: none;
                transition: background 0.3s ease;
            }

            .dropdown-menu a:hover {
                background: #f8f9fa;
                color: #2563eb;
            }

            .dropdown-menu li:last-child a {
                border-bottom: none;
            }

            /* Zobrazenie dropdownu pri hover */
        /*    .dropdown:hover .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            /* Šípka dole */
         /*   .dropdown > a i {
                margin-left: 5px;
                font-size: 0.8em;
                transition: transform 0.3s;
            }

            .dropdown:hover > a i {
                transform: rotate(180deg);
            }

            @media (max-width: 768px) {
            .dropdown-menu {
                position: static;
                background: transparent;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
            }
            
            .dropdown.active .dropdown-menu {
                display: block;
            }
            
            .dropdown-menu a {
                padding: 10px 15px;
                border-bottom: 1px solid #e0e0e0;
            }
            
            .dropdown > a i {
                display: none;
            }
        } */

        /* Dropdown menu - zobrazenie pod sebou */
          /*  .dropdown-menu {
                display: block !important;
                position: absolute;
                top: 100%;
                left: 0;
                background: white;
                min-width: 250px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                border-radius: 5px;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: all 0.3s ease;
                z-index: 1000;
            }

            .dropdown-menu li {
                display: block !important;
                width: 100% !important;
                float: none !important;
            }

            .dropdown-menu a {
                display: block !important;
                width: 100% !important;
                padding: 12px 20px;
                color: #333;
                text-decoration: none;
                border-bottom: 1px solid #f0f0f0;
                transition: background 0.3s ease;
                white-space: nowrap;
            }

            .dropdown:hover .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            /* Mobile menu */
          /*  @media (max-width: 768px) {
                .dropdown-menu {
                    position: static !important;
                    box-shadow: none;
                    opacity: 1;
                    visibility: visible;
                    transform: none;
                    background: transparent;
                    display: none;
                    min-width: auto;
                }
                
                .dropdown.active .dropdown-menu {
                    display: block !important;
                }
            } */

            /* Oprava dropdown menu - musí byť pod nadradenou položkou */
                .dropdown {
                    position: relative;
                    display: inline-block;
                }

                .dropdown-menu {
                    position: absolute;
                    top: 50%; /* Umiestni sa PRIAMO POD nadradenú položku */
                    right: 25px;
                    background: white;
                    min-width: 250px;
                    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                    border-radius: 5px;
                    opacity: 0;
                    visibility: hidden;
                    transform: translateX(-50%);
                    transition: all 0.3s ease;
                    z-index: 1000;
                    /* Dôležité - resetujeme všetky floaty a display */
                    display: list-item; 
                    padding: 0;
                    margin-top: 5px;
                    border: 1px solid #e0e0e0;
                    overflow: hidden; /* Dôležité - zabráni pretekaniu */
                }

                .dropdown-menu li {
                    display: block !important;
                    width: 100% !important;
                    float: none !important;
                }

                .dropdown:hover .dropdown-menu {
                    opacity: 1;
                    visibility: visible;
                    transform: translateY(0);
                    display: block;
                }

                /* Špecifická oprava pre header */
                header .dropdown-menu {
                    top: 100%;
                    left: 0;
                    margin-top: 0;
                }

                header .dropdown-menu a {
                    display: block;
                    padding: 12px 20px;
                    color: #333;
                    text-decoration: none;
                    border-bottom: 1px solid #f0f0f0;
                    white-space: nowrap;
                }

                header .dropdown-menu li:last-child a {
                    border-bottom: none;
                }

                .dropdown-menu a {
                    display: block;
                    padding: 12px 20px;
                    color: #333;
                    text-decoration: none;
                    border-bottom: 1px solid #f0f0f0;
                    transition: background 0.3s ease;
                    white-space: nowrap;
                    /* Zabráni pretekaniu borderu */
                    box-sizing: border-box;
                    border-bottom: 1px solid #f0f0f0;
                    margin: 0;
                    text-align: left;
                    left: -20px;
                }

                .dropdown-menu li:last-child a {
                    border-bottom: none;
                }
    
                .ul.a {
                    list-style-type: disc;
                }

           .process {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            font-family: inherit;
        }
        
        .process-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 60px;
            color: #333;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            align-items: flex-start;
        }
        
        .step {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 0 15px;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background-color: #eb2525;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }
        
        .step-content {
            padding: 0 10px;
        }
        
        .step-title {
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 15px;
            color: #030000;
        }
        
        .step-description {
            color: #666;
            line-height: 1.6;
            font-size: 16px;
        }
        
        /* Horizontálna čiara medzi krokmi */
        .process-steps::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 15%;
            right: 15%;
            height: 3px;
            background-color: #eb2525;
            z-index: 1;
        }
        
        /* Responzívny dizajn pre menšie obrazovky */
        @media (max-width: 768px) {
            .process-steps {
                flex-direction: column;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .step {
                margin-bottom: 40px;
            }
        }

         .section-spacing {
            margin-bottom: 50px;
        }

        .section-spacer {
            height: 80px;
            background: transparent;
}



/* ===== E-SHOP SEKCE ===== */
.eshop-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.eshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.eshop-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.eshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.eshop-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.eshop-image {
    height: 200px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eshop-content {
    padding: 25px;
    text-align: center;
}

.eshop-content h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.eshop-description {
    color: var(--gray-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.eshop-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.eshop-button {
    display: inline-block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.eshop-footer {
    text-align: center;
    margin-top: 30px;
}

/* Responzivita */
@media (max-width: 992px) {
    .eshop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .eshop-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== NOUZOVE OPRAVY PRE MOBIL ===== */
@media (max-width: 768px) {
    /* Oprava headeru */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        z-index: 1000;
        height: 60px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .header .container {
        height: 60px;
        padding: 0 15px;
    }
    
    /* Odsadenie kvoli fix headeru */
    main, .hero, section:first-of-type {
        padding-top: 60px !important;
    }
    
    /* Oprava hero sekcie */
    .hero {
        min-height: 400px;
        position: relative !important;
    }
    
    .hero-content {
        position: relative !important;
        margin: 0 !important;
        padding: 30px 40px !important;
        text-align: center !important;
        width: 100% !important;
        left: auto !important;
        top: auto !important;
        bottom: 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        position: relative !important;
        margin: 100px 0 !important;
        display: flex;
        flex-direction: column;
        gap: 10px;
        top: 180px;
        left: 0;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}