
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: auto !important;
        }

        /* Hero sekce s obrázky */
        .hero {
            position: relative;
            background: linear-gradient(135deg, #1a3d2e 0%, #2d5a45 50%, #3d7b5f 100%);
            min-height: 60vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://cdn.myshoptet.com/usr/729810.myshoptet.com/user/shop/big/112-1_ag-6.jpg?68b5398d') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            width: 100%;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease-out;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        /* USP karty */
        .usp-section {
            padding: 80px 0;
        }

        .usp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .usp-card {
            background: linear-gradient(135deg, #c98e1f 0%, #d4a332 50%, #1a1a1a 100%);
            padding: 40px 30px;
            text-align: center;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(201, 142, 31, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .usp-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s;
        }

        .usp-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(201, 142, 31, 0.3);
        }

        .usp-card:hover::before {
            left: 100%;
        }

        .usp-card h3 {
            font-size: 20px;
            color: white;
            font-weight: 600;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* Proč Suprafeeds sekce */
        .why-section {
            padding: 80px 0;
            position: relative;
        }

        .why-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://cdn.myshoptet.com/usr/729810.myshoptet.com/user/shop/big/76-1_ag-3.jpg?68b53830') no-repeat center center;
              background-size: auto;
            background-size: cover;
            opacity: 0.1;
          }

        .why-content {
            display: grid;
            gap: 60px;
            align-items: start;
        }

        .why-text h2 {
            color: #2d5a45;
            font-size: 2.8rem;
            margin-bottom: 40px;
            font-weight: 700;
            position: relative;
        }

        .why-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #c98e1f, #d4a332);
            border-radius: 2px;
        }

        .benefits-list {
            list-style: none;
            padding: 0;
        }

        .benefits-list li {
            margin-bottom: 25px;
            padding: 20px;
            background: linear-gradient(135deg, #f8fffe, #ffffff);
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-left: 5px solid #c98e1f;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .benefits-list li:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }

        .benefits-list li strong {
            color: #2d5a45;
            font-weight: 600;
        }

        .product-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }

        .product-image:hover {
            transform: scale(1.05);
        }

        .product-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Náš příběh sekce */
        .story-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #2d5a45 0%, #1a3d2e 100%);
            color: white;
            position: relative;
        }

        .story-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://cdn.myshoptet.com/usr/729810.myshoptet.com/user/shop/big/76-1_ag-3.jpg?68b53830') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
        }

        .story-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .story-content h2 {
            font-size: 2.8rem;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .story-text {
            display: grid;
            gap: 25px;
            margin-bottom: 50px;
        }

        .story-text p {
            font-size: 18px;
            line-height: 1.8;
            opacity: 0.95;
            padding: 25px;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .story-text p:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }

        .final-message {
            font-size: 1.5rem;
            font-weight: 600;
            padding: 40px;
            background: linear-gradient(135deg, rgba(201, 142, 31, 0.2), rgba(212, 163, 50, 0.2));
            border-radius: 20px;
            border: 2px solid rgba(201, 142, 31, 0.3);
            backdrop-filter: blur(10px);
            margin-top: 40px;
        }

        /* Animace */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsivní design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .why-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .usp-grid {
                grid-template-columns: 1fr;
            }

            .story-content h2,
            .why-text h2 {
                font-size: 2.2rem;
            }

            .container {
                padding: 0 15px;
            }
        }

        /* Floating particles efekt */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(201, 142, 31, 0.6);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) translateX(100px);
                opacity: 0;
            }
        }