.elementor-4580 .elementor-element.elementor-element-997fa93{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4580 .elementor-element.elementor-element-fc4eb1a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-45dc2da */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 50%, #1a472a 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }

        /* Sněhové vločky */
        .snowflake {
            position: fixed;
            top: -10px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1em;
            animation: fall linear infinite;
            z-index: 1;
        }

        @keyframes fall {
            to {
                transform: translateY(100vh);
            }
        }

        .container {
            max-width: 700px;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .ornament {
            font-size: 2.5em;
            margin-bottom: 20px;
            animation: swing 3s ease-in-out infinite;
        }

        @keyframes swing {
            0%, 100% { transform: rotate(-5deg); }
            50% { transform: rotate(5deg); }
        }

        h1 {
            color: #1a472a;
            font-size: 2.2em;
            margin-bottom: 15px;
            font-weight: normal;
            letter-spacing: 1px;
        }

        .subtitle {
            color: #c41e3a;
            font-size: 1.1em;
            margin-bottom: 30px;
            font-style: italic;
        }

        .content {
            color: #333;
            line-height: 1.8;
            margin-bottom: 35px;
            text-align: left;
        }

        .content p {
            margin-bottom: 15px;
        }

        .highlight {
            background: linear-gradient(120deg, #fef9e7 0%, #fdebd0 100%);
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 4px solid #c41e3a;
        }

        .email-form {
            margin: 30px 0;
        }

        input[type="email"] {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1em;
            margin-bottom: 15px;
            transition: border-color 0.3s;
        }

        input[type="email"]:focus {
            outline: none;
            border-color: #c41e3a;
        }

        .cta-button {
            background: linear-gradient(135deg, #c41e3a 0%, #a01729 100%);
            color: white;
            padding: 18px 50px;
            border: none;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(196, 30, 58, 0.3);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

        .gdpr {
            font-size: 0.85em;
            color: #666;
            margin-top: 20px;
            line-height: 1.6;
        }

        .gdpr a {
            color: #c41e3a;
            text-decoration: none;
        }

        .gdpr a:hover {
            text-decoration: underline;
        }

        .footer {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 2px solid #f0f0f0;
        }

        .footer p {
            color: #1a472a;
            font-size: 1.1em;
            margin-bottom: 5px;
        }

        .signature {
            color: #666;
            font-style: italic;
            margin-top: 10px;
        }

        .paw {
            color: #c41e3a;
            font-size: 1.5em;
            margin: 0 5px;
        }

        .success-message {
            display: none;
            background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            color: #155724;
            border-left: 4px solid #28a745;
        }

        @media (max-width: 600px) {
            .container {
                padding: 40px 25px;
            }

            h1 {
                font-size: 1.8em;
            }

            .subtitle {
                font-size: 1em;
            }

            .cta-button {
                padding: 15px 40px;
                font-size: 1em;
            }
        }/* End custom CSS */