        .howto-hero {
            min-height: 40vh;
            justify-content: center;
            text-align: center;
        }
        .howto-hero-content {
            flex: 0 0 100%;
        }
        .steps-section {
            padding: 4rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        .step-item {
            display: flex;
            align-items: center;
            gap: 3rem;
            margin-bottom: 4rem;
        }
        .step-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        .step-number {
            font-size: 4rem;
            font-weight: bold;
            color: rgba(15, 44, 89, 0.1);
            line-height: 1;
            margin-bottom: 1rem;
        }
        .step-content {
            flex: 1;
        }
        .step-title {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-weight: bold;
        }
        .step-desc {
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .step-visual {
            flex: 1;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            height: 360px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-style: italic;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        .video-section {
            background: var(--primary-color);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }
        .video-placeholder {
            max-width: 800px;
            height: 450px;
            background: rgba(0,0,0,0.3);
            margin: 2rem auto 0;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255,255,255,0.2);
        }
        .play-icon {
            width: 64px;
            height: 64px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
        }
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 2rem;
            text-align: center;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .howto-hero {
        min-height: 30vh;
        padding: 2rem 1rem;
    }
    
    .steps-section {
        padding: 2rem 1rem;
    }
    
    .step-item {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .step-item:nth-child(even) {
        flex-direction: column;
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-visual {
        height: 250px;
        order: -1; /* Move visual above content on mobile */
        max-width: 100%;
        overflow: hidden;
    }
    
    .step-visual img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .video-section {
        padding: 2rem 1rem;
    }
    
    .video-placeholder {
        height: 250px;
        margin: 1.5rem auto 0;
    }
    
    .play-icon {
        width: 48px;
        height: 48px;
    }
    
    .footer {
        padding: 1.5rem 1rem;
    }
}