   #your-journey-withus {
      max-width: 1000px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .method-item {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
    }

    .method-header {
        width: 100%;
        padding: 20px 20px 20px 60px;
        font-size: 20px;
        font-weight: bold;
        background-color: #F4F3F2;
        background-repeat: no-repeat;
        background-size: 32px;
        background-position: 20px center;
        color: #333;
        text-align: left;
        cursor: pointer;
        border: none;
        outline: none;
    }

    .method-body {
        display: none;
        padding: 20px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .method-body.active {
        display: flex;
        flex-direction: row;
    }

    .method-body img {
        max-width: 300px;
        height: auto;
    }

    .method-content {
        flex: 1;
    }

    @media (max-width: 768px) {
        .method-body {
            flex-direction: column;
            align-items: center;
        }
    }