 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .story-container {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .story-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/monparent-mediwalk.webp') center/cover;
			 border: 3px solid white;
            box-sizing: border-box;
        }

        .story-slide.active {
            opacity: 1;
        }

        .content-wrapper {
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 20px;
        }

        .icon {
            font-size: 3rem;
            margin-bottom: 2rem;
            color: #3b82f6;
        }

        .title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.6s ease 0.2s;
        }

        .description {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.6s ease 0.4s;
        }

        .active .title,
        .active .description {
            transform: translateY(0);
            opacity: 1;
        }

        .progress-bar {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .progress-segment {
            width: 50px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
        }

        .progress-segment.active {
            background: white;
        }

        .navigation {
            position: fixed;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            z-index: 100;
        }

        .nav-button {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            backdrop-filter: blur(5px);
        }

        .nav-button:hover {
            background: white;
            color: black;
        }

        .cta-button {
            position: fixed;
            bottom: 120px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
            padding: 15px 30px;
            background: #3b82f6;
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .cta-button:hover {
            background: #2563eb;
        }

        .blink-animation {
            animation: blink 2s infinite;
        }

        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0.3; }
            100% { opacity: 1; }
        }

        @media (max-width: 768px) {
            .cta-button {
                bottom: 120px;
                width: 80%;
                max-width: 300px;
                font-size: 1rem;
            }
            .title {
                font-size: 1.9rem;
            }
            .description {
                font-size: 1.4rem;
                padding: 0 20px;
                margin-bottom: 60px;
            }
            .navigation {
                bottom: 20px;
            }
            .nav-button {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
        }

