    .shipping-hero-wrapper {
        width: 80%;
        max-width: 1200px;
        margin: 20px auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 30px;
        background: #e20c14;
        color: #fff;
        padding: 75px;
        border-radius: 20px;
        font-family: sans-serif;
        box-sizing: border-box;
    }

    .shipping-step1-content {
        width: 100%;
    }

    .shipping-step1-content h2 {
        margin: 0 0 10px;
        font-size: 30px;
        line-height: 1.2;
        font-weight: 800;
    }

    .shipping-step1-content p {
        margin: 0 0 22px;
        font-size: 17px;
        line-height: 2.5;
    }

    .shipping-step1-content input {
        width: 100%;
        box-sizing: border-box;
        padding: 15px 16px;
        margin: 10px 0;
        border-radius: 12px;
        border: 1px solid #ddd;
        font-size: 18px;
        color: #000 !important;
        background: #fff !important;
        outline: none;
    }

    .shipping-step1-content input::placeholder {
        color: #555 !important;
    }

    .shipping-step1-content input:focus {
        border-color: #ffc107;
        box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25);
    }

    .shipping-step1-content button {
        width: 100%;
        box-sizing: border-box;
        padding: 16px;
        background: #ffc107;
        color: #000;
        font-weight: 900;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        margin-top: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .shipping-step1-content button:hover {
        filter: brightness(0.96);
        transform: translateY(-1px);
    }

    .shipping-step1-image {
        width: 100%;
        text-align: center;
    }

    .shipping-step1-image img {
        width: 100%;
        max-width: 480px;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 18px;
        object-fit: contain;
    }

    @media (max-width: 900px) {
        .shipping-hero-wrapper {
            width: 92%;
            grid-template-columns: 1fr;
            padding: 25px;
            gap: 22px;
        }

        .shipping-step1-content h2 {
            font-size: 24px;
        }

        .shipping-step1-content p {
            font-size: 15px;
        }

        .shipping-step1-image {
            order: -1;
        }

        .shipping-step1-image img {
            max-width: 360px;
        }
    }

    @media (max-width: 520px) {
        .shipping-hero-wrapper {
            width: 94%;
            padding: 20px;
            border-radius: 16px;
        }

        .shipping-step1-content h2 {
            font-size: 22px;
        }

        .shipping-step1-content input,
        .shipping-step1-content button {
            font-size: 15px;
            padding: 14px;
        }
    }