     .hero {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        padding: 48px 0;
        align-items: center;
    }

    .hero-image {
        flex: 1;
        min-width: 280px;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    .hero-text {
        flex: 1;
        min-width: 280px;
    }

    .hero-text h1 {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #ffffff;
    }

    .hero-text p {
        color: #e0e0e0;
        margin-bottom: 30px;
        font-size: 16px;
    }

    .btn-group {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .btn {
        padding: 12px 28px;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.2s;
        display: inline-block;
        text-align: center;
        cursor: pointer;
    }

    .btn-primary {
        background: #ffffff;
        color: #0a0a0a;
        border: 1px solid rgba(255,255,255,0.2);
    }

    .btn-secondary {
        background: transparent;
        color: #ffffff;
        border: 1px solid rgba(255,255,255,0.2);
    }

    .btn-primary:hover, .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(253,4,4,0.25);
        background: #ffffff;
        color: #0a0a0a;
    }
